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_URLOpenAI-compatible endpoint (llama-swap, Ollama, LM Studio, vLLM). Default http://127.0.0.1:9292/v1
LOCAL_DELEGATE_API_KEYsecretBearer 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-mcpRelated MCP servers
Whisper Transcribe
Active
Transcribe audio locally with faster-whisper or through the OpenAI Whisper API.
0
View repository →Python
MIT