local-llm
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@local-llmAsk the local model to summarize this changelog for a non-technical audience."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
local-llm
Deux façons de faire travailler un LLM local (Qwen3.6-35B-A3B-AWQ servi par vLLM sur une Jetson AGX Orin) à la place de Claude, pour les sous-tâches mécaniques ou volumineuses.
Fichier | Rôle |
| Serveur MCP exposant l'outil |
| CLI qui lit les fichiers elle-même — rien du contenu ne transite par le contexte de Claude |
La distinction compte : passer par l'outil MCP oblige Claude à recopier le contenu dans
l'argument prompt, ce qui coûte plus cher en tokens de sortie que de ne rien déléguer.
delegate.py évite ça — Claude ne voit que le résultat.
Installation
python3 -m venv .venv
.venv/bin/pip install -r requirements.txtRelated MCP server: ollama-mcp
delegate.py
.venv/bin/python delegate.py --file '<fichier_ou_glob>' --task "<instruction>" [--out <sortie>]--file est répétable et accepte les globs. Options : --system, --max-tokens
(2048), --temperature (0.3), --think (raisonnement interne, plus lent), --out.
server.py (MCP)
Déclaration dans .mcp.json :
{
"mcpServers": {
"local-llm": {
"command": "/chemin/vers/.venv/bin/python",
"args": ["/chemin/vers/server.py"],
"env": {
"VLLM_URL": "http://localhost:8000/v1/chat/completions",
"VLLM_MODEL": "cyankiwi/Qwen3.6-35B-A3B-AWQ-4bit"
}
}
}
}Configuration
Tout passe par l'environnement, rien n'est codé en dur :
VLLM_URL— défauthttp://localhost:8000/v1/chat/completionsVLLM_MODEL— défautcyankiwi/Qwen3.6-35B-A3B-AWQ-4bit
Timeout des requêtes : 900 s (génération longue sur Jetson).
Bon à savoir
Le modèle local est plus petit et moins fiable : ses sorties sont des brouillons à relire, pas des vérités. À éviter pour les décisions d'architecture et le code sensible (sécurité, auth, paiement).
Testé avec Python 3.10, httpx 0.28.1, mcp 1.9.4.
This server cannot be deployed
Maintenance
Related MCP Connectors
Pay-per-call GLM 5.3 MCP tool via x402 on Base. Reasoning, tool-calls, OpenAI-compatible.
- WauldoOAuthcom.wauldo
Stateless agentic tools over MCP: concept extraction, long-context, knowledge graph, planning.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
The OpenRouter for tools. One MCP connection gives any AI agent 254 hosted tools, pay per call.
Related MCP Servers
- FlicenseAqualityDmaintenanceLocal MCP server that enables delegating low-risk tasks like summarization or code patches to a low-cost model, with the main agent reviewing results.2-
- AlicenseAqualityBmaintenanceEnables AI agents to offload mechanical, high-token work to local Ollama models through MCP, with role-based model discovery, batch processing, and file-aware inputs.4MIT
- FlicenseNot gradedqualityBmaintenanceMCP server that enables an agent to spawn sub-agents (a crew) via a local tool, allowing delegation of large tasks to parallel workers with a human approval gate and efficient token usage.-
- AlicenseNot gradedqualityBmaintenanceEnables MCP clients like Claude Code, Codex, and others to offload bounded background tasks (e.g., repository scans, reviews, batch work) to smaller models configured in OMP, while the parent agent retains context and decision-making.MIT