PluginBench
MCP Server
Active
MIT

io.github.ZahiriNatZuke/local-delegate MCP Server

io.github.ZahiriNatZuke/local-delegate

What is the io.github.ZahiriNatZuke/local-delegate MCP server?

Delegate mechanical text tasks to a local OpenAI-compatible LLM to save Claude quota.

How to install io.github.ZahiriNatZuke/local-delegate

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • LOCAL_DELEGATE_BASE_URL

    OpenAI-compatible endpoint (llama-swap, Ollama, LM Studio, vLLM). Default http://127.0.0.1:9292/v1

  • LOCAL_DELEGATE_API_KEY
    secret

    Bearer token for the endpoint, if it requires one.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "local-delegate": {
      "command": "uvx",
      "args": [
        "local-delegate-mcp"
      ],
      "env": {
        "LOCAL_DELEGATE_BASE_URL": "<YOUR_LOCAL_DELEGATE_BASE_URL>",
        "LOCAL_DELEGATE_API_KEY": "<YOUR_LOCAL_DELEGATE_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "local-delegate": {
      "command": "uvx",
      "args": [
        "local-delegate-mcp"
      ],
      "env": {
        "LOCAL_DELEGATE_BASE_URL": "<YOUR_LOCAL_DELEGATE_BASE_URL>",
        "LOCAL_DELEGATE_API_KEY": "<YOUR_LOCAL_DELEGATE_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "local-delegate": {
      "command": "uvx",
      "args": [
        "local-delegate-mcp"
      ],
      "env": {
        "LOCAL_DELEGATE_BASE_URL": "<YOUR_LOCAL_DELEGATE_BASE_URL>",
        "LOCAL_DELEGATE_API_KEY": "<YOUR_LOCAL_DELEGATE_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "local-delegate": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "local-delegate-mcp"
      ],
      "env": {
        "LOCAL_DELEGATE_BASE_URL": "<YOUR_LOCAL_DELEGATE_BASE_URL>",
        "LOCAL_DELEGATE_API_KEY": "<YOUR_LOCAL_DELEGATE_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add local-delegate --env LOCAL_DELEGATE_BASE_URL=<YOUR_LOCAL_DELEGATE_BASE_URL> --env LOCAL_DELEGATE_API_KEY=<YOUR_LOCAL_DELEGATE_API_KEY> -- uvx local-delegate-mcp

Related MCP servers

Transcribe audio locally with faster-whisper or through the OpenAI Whisper API.

0
Python
MIT
View repository →