ollama-vision-mcp
Capabilities:
Analyze images – provide a path to a local image (PNG, JPG, WebP, etc.) and receive a detailed textual description.
Customize analysis – supply a custom prompt to steer the description (e.g., focus on UI bugs).
Choose vision model – select any Ollama vision model (default:
kimi-k2.6:cloud), connecting to a local instance or Ollama Cloud.Integrate with MCP – works with MCP clients (Claude Code, Cursor, etc.) to give text-only LLMs vision-like understanding of screenshots, diagrams, and more.
Provides an analyze_image tool that sends local images to a vision-capable Ollama model and returns the model's textual description, giving vision capabilities to text-only LLMs.
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., "@ollama-vision-mcpanalyze this screenshot of the bug and tell me what's wrong"
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.
Ollama Vision MCP
A Python MCP server that gives vision
capabilities to a text-only LLM. It exposes a single tool, analyze_image,
that sends a local image to a vision-capable Ollama model and returns the
model's textual description.
Works with Claude Code, Cursor, and any MCP client that can launch a stdio command.
Motivation
deepseek-v4-flash:0731 is fast and capable, but it is a text-only model
— it has no vision capability, so it can't look at screenshots, UI bugs, or
diagrams on its own. Rather than switch to a heavyweight vision model for
every task, this server bridges the gap: when the text-only LLM needs to
"see" an image, analyze_image sends it to a vision-capable Ollama model
(kimi-k2.6 by default — served by Ollama Cloud or a local instance) and
returns the visual details as text the text-only model can then reason about.
Related MCP server: VisionPower
Prerequisites
Python 3.10+ with uv (recommended) or pip
Access to an Ollama instance serving a vision model — either:
Ollama Cloud (no local daemon): export
OLLAMA_HOST=https://ollama.comandOLLAMA_API_KEY=<your key>in your shell profile, ora local Ollama with a vision model pulled:
ollama serve & ollama pull kimi-k2.6
Quick start
# 1. Get the code
git clone https://github.com/wzul/ollama-vision-mcp.git
cd ollama-vision-mcp
# 2. Install dependencies
uv sync
# 3. Test it standalone
uv run python tests/test_e2e.pyThen register the server in your MCP client. For Claude Code, the CLI registers it at user scope (available in every project):
claude mcp add --scope user ollama-vision-mcp -- /absolute/path/to/ollama-vision-mcp/.venv/bin/ollama-vision-mcpScope gotcha: without
--scope user,claude mcp addregisters at the project-local scope only — the tool silently won't load from other directories.
Or add this to the top-level mcpServers object in ~/.claude.json (the
top-level object is the user scope; see
Registering):
"ollama-vision-mcp": {
"command": "uvx",
"args": ["--from", "/absolute/path/to/ollama-vision-mcp", "ollama-vision-mcp"]
}💡 Easiest install: if you have Claude Code, just ask it to run the
install-ollama-vision-mcpskill (ships in.claude/skills/in this repo) — it checks prerequisites, writes the config, and verifies the connection for you.
Running as an MCP server (stdio)
uv run ollama-vision-mcpor directly from source:
.venv/bin/python ollama_vision_mcp/server.pyTool: analyze_image
Argument | Type | Required | Default |
| string | yes | — (absolute or relative path; PNG, JPG, WebP, …) |
| string | no |
|
| string | no |
|
Logic: validates the path exists → opens the image with Pillow (normalized to
RGB/PNG) → sends it base64-encoded alongside the prompt via ollama.chat() →
returns the model's text response.
Registering in ~/.claude.json
Add an mcpServers entry for this server (replace
/path/to/ollama-vision-mcp with your actual clone location). Two options:
Option A — uvx (runs in an isolated ephemeral environment)
{
"mcpServers": {
"ollama-vision-mcp": {
"command": "uvx",
"args": [
"--from",
"/path/to/ollama-vision-mcp",
"ollama-vision-mcp"
]
}
}
}uvx builds the local project each launch (cached). If the package is
published to PyPI, "--from", "ollama-vision-mcp" works instead.
Option B — standard Python execution (existing project venv)
{
"mcpServers": {
"ollama-vision-mcp": {
"command": "/path/to/ollama-vision-mcp/.venv/bin/python",
"args": [
"/path/to/ollama-vision-mcp/ollama_vision_mcp/server.py"
]
}
}
}For a system-wide Python instead of the project venv, install the package
first (uv tool install --from . ollama-vision-mcp or pip install .) and
point command at the ollama-vision-mcp executable.
JSON gotcha:
~/.claude.jsonis a single big JSON object. ThemcpServersblock already exists — add the server as a new key inside it, and make sure you don't leave a trailing comma after the last entry.
Scope gotcha: the top-level
mcpServersobject is the user scope (available in every project). If you register via the CLI instead, pass--scope user—claude mcp adddefaults to the project-local scope, which only loads when Claude Code starts from that project's directory.
Ollama Cloud: the server reads
OLLAMA_HOST(defaulthttp://localhost:11434) andOLLAMA_API_KEYfrom the environment. For the cloud, exportOLLAMA_HOST=https://ollama.comin your shell profile — no local daemon orollama pullneeded. The default model iskimi-k2.6(the:cloudtag does not exist on the cloud catalog).
After editing, restart Claude Code (or reload MCP servers). The
analyze_image tool will then be available to the text-only LLM.
Testing
uv run python tests/test_e2e.pySpawns the server over stdio via mcp.client.stdio, verifies tool
registration, runs analyze_image against a locally generated test image with
both the default and a custom prompt, and checks error handling for a missing
file.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseBqualityAmaintenanceA lightweight MCP server for image analysis using any OpenAI-compatible API endpoint, enabling AI agents to analyze images via a single tool.Last updated168MIT
- AlicenseAqualityAmaintenanceA portable image-understanding MCP server that lets agents analyze local images, URLs, or base64 images via an OpenAI-compatible vision model.Last updated111927MIT
- FlicenseBqualityBmaintenanceA Python-based MCP server that adds image analysis capabilities to text-only LLMs via a single analyze_image tool, supporting local files, URLs, auto-scaling, and multiple OpenAI-compatible APIs.Last updated1
- Alicense-qualityCmaintenanceAn MCP server that enables any LLM to describe images from file paths, URLs, or base64 data by forwarding them to a supported vision provider such as OpenAI, Anthropic, or local Ollama models.Last updated1,9396MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
An MCP server that gives your AI access to the source code and docs of all public github repos
MCP server for AI dialogue using various LLM models via AceDataCloud
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/wzul/ollama-vision-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server