local-llm-mcp
Click on "Install 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-llm-mcplist available models"
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-mcp
An MCP server that answers prompts with a local model via Ollama, synchronously.
Companion to codex-offload-mcp. That server exists for slow agentic work that must not block;
this one is for fast, private, low-stakes calls where the answer is wanted in the same turn.
Tools
tool | does |
| Prompt in, text out. Summaries, boilerplate, commit messages, extraction. |
| Sort text into one of your labels. Replies outside the label set are rejected rather than guessed at, and the model can answer that none fit — though a small model will still label plainly unrelated text with confidence, so treat a result as triage, not a verdict. |
| List models Ollama has on disk, and the configured default. |
No file access, no command execution, no memory between calls.
Related MCP server: Ollama MCP Server
Install
Prerequisites
Node.js 20+
Ollama running locally, with at least one model pulled. The server talks to it over HTTP and does not start it for you:
ollama pull qwen2.5-coder:7b
ollama list # confirm the model is on diskBuild
git clone https://github.com/jgt87/local-llm-mcp.git
cd local-llm-mcp
npm install
npm run buildThis produces dist/index.js. Note its absolute path — every step below needs it.
Add to VS Code
MCP support is built into current VS Code; if the Command Palette lists MCP: commands, you have
it. Pick either route:
Guided. Command Palette (Ctrl+Shift+P) → MCP: Add Server → Command (stdio). Enter
node as the command and the absolute path to dist/index.js as the argument, then name it
local-llm.
By hand. Command Palette → MCP: Open User Configuration to open your user mcp.json
(%APPDATA%\Code\User\mcp.json on Windows), and add the server:
{
"servers": {
"local-llm": {
"type": "stdio",
"command": "node",
"args": ["C:/path/to/local-llm-mcp/dist/index.js"]
}
}
}Use forward slashes on Windows, or escape backslashes as \\ — a raw C:\path is invalid JSON and
the server will silently fail to start.
Non-default Ollama host or model? Add an env block alongside args:
"env": { "LOCAL_LLM_MODEL": "llama3.2:3b" }To scope it to one project instead of your whole profile, use MCP: Open Workspace Folder
Configuration and put the same servers block in .vscode/mcp.json. That file can be committed,
which gives everyone on the repo the same tools.
Verify. Open the Chat view, switch to Agent mode, click Configure Tools, and confirm
local_ask, local_classify and local_models appear and are enabled. MCP: List Servers shows
the server's status and its logs if it failed to start. If the tools load but every call errors,
Ollama is not running — check ollama list.
Add to Claude Code
claude mcp add local-llm --scope user -- node /absolute/path/to/dist/index.jsConfirm with /mcp in a session, or claude mcp list from a shell.
After changing the code
A running server keeps serving the old dist/, so rebuild and restart it:
npm run buildVS Code — MCP: List Servers → select the server → Restart. (The experimental
chat.mcp.autoStartsetting can do this for you.)Claude Code — restart the session; MCP servers connect at session start.
Configuration
env | default |
|
|
|
|
|
|
Performance
Measured on a Ryzen AI 9 HX 370 (CPU inference, 61 GB RAM):
model | generation | prompt eval |
llama3.2:3b | 33.7 tok/s | ~285 tok/s |
qwen2.5-coder:7b | 16.0 tok/s | ~120 tok/s |
Keep outputs short — maxTokens is the main latency lever. At 16 tok/s, 160 tokens is ~10 seconds.
Do not set OLLAMA_IGPU_ENABLE=1 on integrated-GPU hardware. The iGPU shares system memory
with the CPU, so generation gets slower (26.2 vs 33.7 tok/s on a Radeon 890M) even though prompt
ingest doubles.
Orchestration
There is no orchestrator. Nothing in this server decides what gets routed to the local model.
There is no router, no classifier picking a backend, no fallback chain. The only thing steering the
choice is the tool descriptions in src/index.ts, which the calling model reads at call time and
judges against. Editing those descriptions is how you change routing behaviour; there is no config
to tune.
Nothing is offloaded here — that is the point. These tools are synchronous: the prompt goes to
Ollama over HTTP and the answer comes back in the same turn. There is no job id, no polling, no
state on disk. A local 7B answers in seconds, and wrapping that in a job store would be pure
overhead. The rule the two servers are built around: if a tool would need to be polled, it belongs
in codex-offload, not here.
Deciding where work goes
Send it here | Send it to | Keep it in the calling model |
Seconds of work, answer needed now | Minutes of work, must not block | Needs the conversation |
Verification cheaper than generation | Needs file access and repo context | Judgement, or the next decision hangs on it |
Wrong answer is cheap to notice | Result checkable against a git diff | Exploratory — direction shifts as you learn |
Privacy matters; nothing leaves the machine | Mechanical and self-contained | Wrong answer is expensive and hard to spot |
Good fits: triage, classification, summarising long output, drafting boilerplate or commit messages, extracting fields from text. Bad fits: anything where a subtly wrong answer is expensive and hard to detect. This server has no file access, no repo context, and no memory between calls.
Output is validated, never trusted
local_classify checks the reply against your label set instead of taking it at face value: a reply
naming two labels, or one outside the set, comes back as matched: false with the raw text rather
than a guess. Substrings do not count, so informational never silently resolves to info.
This mirrors how the sibling server pairs Codex's self-report with a git diff — the delegate says what it did, and something independent checks it.
The limit is worth stating plainly: validation catches malformed and hedged replies, but cannot
catch a confidently wrong one. The none escape hatch narrows that gap and does not close it — a
small model will still hand back a plausible in-set label for text belonging to none of them. Treat
a returned label as triage, not a verdict.
Licence
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceA Python MCP server that exposes local Ollama models as tools for AI assistants, enabling chat, generation, embeddings, and model management without cloud APIs.5MIT
- AlicenseBqualityDmaintenanceA universal MCP server that integrates with local Ollama instances, enabling AI-powered chat, model management, and text generation from any MCP-compatible IDE or application.61053MIT
- Alicense-qualityCmaintenanceExperimental MCP server for local LLM orchestration with filesystem tools (read, write, list, delete files) and a CLI agent that communicates via Ollama.6ISC
- Flicense-qualityBmaintenanceMCP server that enables AI to read, search, and edit local files securely without external data exposure, using local LLMs via Ollama and integrating with Open WebUI or Claude Desktop.
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jgt87/local-llm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server