Ollama CodeAn agentic coding panel for your local Ollama models — a Claude Code / Codex–style chat experience that runs entirely on your machine. Under the hood it drives the open-source OpenCode agent (Apache/MIT) as a headless server pointed at your Ollama server. You get a real agent — file edits, shell tools, permissions, multi-step reasoning — with no cloud model and no API key. Demo
WhyThe official Claude Code and Codex VS Code extensions are not open source, so they can't be adapted to local models. The CLIs behind several agents are open, though — and OpenCode in particular ships a headless server with a built-in Ollama provider. This extension wraps that server in a native chat panel and fills its model picker with the models you actually have installed. Features
Requirements
Quick start
Beta channelNew features ship to the Marketplace pre-release channel first (odd minor
versions, e.g. Settings
MCP serversThe agent can call tools from MCP (Model Context Protocol) servers — browser automation, databases, issue trackers, docs, and more. OpenCode runs the servers; this extension just gathers them from wherever you've configured them and hands them over. Where servers come fromServers are merged from these sources, in increasing precedence (a later source wins on a name collision):
If you already use MCP with Claude Code or VS Code Copilot, those servers work here with nothing to re-enter. Use Setting up a
|
| Field | Applies to | Notes |
|---|---|---|
command |
local (stdio) | Executable name or path (e.g. npx, uvx, an absolute path). |
args |
local (stdio) | Array of arguments passed to command. |
env |
local (stdio) | Environment variables for the server process. |
type |
both | "http" / "sse" mark a remote server; "stdio" / "local" a local one. Inferred from the fields when omitted (a url ⇒ remote, a command ⇒ local). |
url |
remote (http/sse) | The server endpoint. |
headers |
remote (http/sse) | HTTP headers, e.g. an Authorization token. |
enabled |
both | Set false to keep a server defined but not started. |
${VAR}references inenvvalues,headers, andurlare resolved from the environment before the server launches — keep secrets in your environment, not in the file.- Transports: local (stdio) and remote (http/sse). Both the Claude Code field shape (
command+args) and the VS Code shape are accepted and normalized for you.
Checking status — the /mcp command
Type /mcp in the chat to list your configured servers and their live status:
- 🟢 connected — running and its tools are available
- 🟡 disabled — defined but
"enabled": false - 🔴 failed — couldn't start/connect; the reason is shown (a bad server never blocks the chat)
Each row shows the transport (local/remote) and the command or URL it was configured with.
Notes
- Applying changes. Edits to
ollamaCode.mcpServers(or VS Code'smcpsetting) restart the agent automatically. Edits to the.mcp.json/.vscode/mcp.jsonfiles apply on the next Ollama Code: Restart OpenCode Server (or a window reload). - Mind the context window. Each MCP server adds its tool schemas to every request. Local models have far less context than cloud ones (OpenCode's own system prompt + built-in tools already use ~11k tokens), so enable only the servers you need and raise
ollamaCode.minContextLengthif tools start crowding out the conversation. npx/uvxonPATH. Local servers launched withnpx/uvxneed Node and those tools onPATH. The extension augmentsPATHwith common install locations (Homebrew,~/.local/bin, nvm/fnm, bun, cargo), but if a server shows as failed, check Ollama Code: Show Logs.
How it works
VS Code webview (chat UI)
│ postMessage
▼
Extension host (bridge)
│ HTTP + SSE (raw fetch)
▼
opencode serve ──native ollama provider──▶ Ollama (/api/chat, local model)
(OLLAMA_HOST + OPENCODE_CONFIG_CONTENT injected at launch)
The extension enumerates your installed models with Ollama's REST API
(/api/tags, /api/show, /api/ps), then augments OpenCode's built-in
ollama provider with those models (capabilities, context limit, num_ctx)
via the OPENCODE_CONFIG_CONTENT environment variable — nothing is written
to your workspace or global config. The active server is passed through
OLLAMA_HOST. Model load/eject uses /api/generate with keep_alive and
options.num_ctx.
Develop from source
npm install
npm run bundle:opencode # fetch the pinned OpenCode binary into bin/ for your platform
npm run compile # type-check + bundle (extension + webview)
# then press F5 in VS Code to launch the Extension Development Host
npm run package:vsix:bundled # build a platform .vsix with the binary embedded
The OpenCode binary is fetched at build time (pinned by opencodeVersion in
package.json) and is never committed — bin/ is git-ignored. Bump that field
to upgrade the bundled OpenCode. F5 also resolves the binary from bin/, so run
bundle:opencode once before launching the dev host.
License
MIT
