local-llm-delegation-mcp
Optimizes token costs by intelligently delegating low-complexity tasks to local LLMs via LiteLLM, enabling cost-effective development workflows.
README
Local LLM Delegation MCP
An optimized Model Context Protocol (MCP) server designed to dramatically reduce premium token costs by intelligently delegating low-complexity tasks to high-performance local LLMs via LiteLLM.
This server allows you to leverage massive local context windows for "surgical" development tasks (refactoring, unit tests, documentation) while keeping your primary LLM focused on complex architecture and reasoning.
🚀 Key Features
- LiteLLM Integration: Seamlessly connect to Ollama, vLLM, LM Studio, Anthropic, or any OpenAI-compatible provider.
- Externalized Configuration: Fine-tune model parameters (temperature, top_p, max_tokens) via
config.yaml. - Customizable Prompts: Define your own task templates and system messages in
prompts.yaml. - Token Optimization: Automatically offload simple tasks to local models like Qwen 2.5/3.5 Coder.
- Usage Tracking: Monitor your savings with built-in usage logging and statistics.
🛠️ Requirements
- Local LLM Runner (e.g., Ollama, vLLM, LM Studio)
- Python 3.13+
📦 Installation
-
Clone the repository:
git clone https://github.com/mrrodriguez/local-llm-delegation-mcp.git cd local-llm-delegation-mcp -
Set up environment variables:
cp .env.example .env # Edit .env to match your local setup -
Choose your installation method:
Option A: Global CLI (Recommended for simplicity) Install as a global tool. This adds the
local-llm-delegatorcommand to your PATH.pip install . # Or using pipx (preferred) pipx install .Option B: Local Environment (Recommended for development) Use a virtual environment and point your MCP client directly to a startup script.
python -m venv .venv source .venv/bin/activate pip install .
⚙️ Configuration
The server uses a flexible configuration system. Settings are loaded from config.yaml and prompts.yaml located in the project root, with key overrides available via Environment Variables (or a .env file).
Configuration Hierarchy
- Base Defaults: Hardcoded in
config.py. - YAML Files:
config.yaml(model settings) andprompts.yaml(task templates). - Environment Variables: Overrides specific settings like
LOCAL_MODEL_NAMEandOPENAI_BASE_URL.
1. Quick Start: Environment Variables
The fastest way to switch models without editing files:
# In your .env file or shell environment
LOCAL_MODEL_NAME=ollama/llama3:8b # Overrides config.yaml
OPENAI_BASE_URL=http://localhost:11434/v1
2. Model Tuning (config.yaml)
Update the name to match your local provider's format (e.g., ollama/qwen2.5-coder). The provided template is optimized for high-end hardware (e.g., Apple M-series Max).
model:
name: "openai/Qwen3-Coder-30B-A3B-Instruct-MLX-8bit" # Example: OMLX/MLX
temperature: 0.1
max_tokens: 32768
extra_params:
num_ctx: 65536
num_predict: 32768
top_p: 0.80
Note: The name must follow the LiteLLM Provider Format.
3. Custom Tasks (prompts.yaml)
Define your own tools by adding entries to prompts.yaml. Each top-level key becomes a sub-task for the query_local_llm_with_context tool.
🔌 Integration
You can add this server to your preferred client using either the global command or a direct path to the project.
1. Gemini Code CLI
If installed globally (Option A):
gemini mcp add local-llm-delegator local-llm-delegator --trust
If using a direct script or path (Option B):
gemini mcp add local-llm-delegator /path/to/your/start-script.sh --trust
2. Claude Code
Add to your ~/.claude.json:
"mcpServers": {
"local-llm-delegator": {
"command": "local-llm-delegator" // If installed globally; otherwise any wrapper script you have to start it
}
}
Note: If using a custom startup script (like for OMLX), set the command to the absolute path of your script.
📊 Usage Tracking
The server logs usage to mcp_usage.jsonl. View stats via:
get_local_llm_usage_stats(MCP tool)show-stats(CLI command - coming soon) orpython show_stats.py
📜 License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。