mcp-vision-bridge
mcp-vision-bridge gives text-only AI agents vision by routing images to a multimodal model and returning detailed text descriptions, so they can "see" without images entering the agent's context.
Analyze images from local file paths, HTTP(S) URLs, base64 data URIs, the system clipboard, or raw image bytes.
Common tasks via the
taskparameter:describe(general description),ocr(extract text),ui(UI specification),layout(spatial layout),qa(question answering).Custom questions with the
promptparameter (overridestask).Detail control:
high(default) orlow.Save long outputs to a
.txtor.mdfile usingsave_to; returns a file path and summary.Works with any OpenAI‑compatible vision model (GPT‑4o, Gemini, Claude, Qwen‑VL, etc.) configured via environment variables.
Integrates with any MCP client (Claude Code, Codex, Cursor, etc.) to enable text‑only agents to process visual content.
Provides image analysis capabilities by sending images to Google Gemini vision models and returning detailed text descriptions of the content.
Provides image analysis capabilities by sending images to OpenAI's vision models (e.g., GPT-4o) and returning detailed text descriptions of the content.
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., "@mcp-vision-bridgeCan you look at ./screenshot.png and tell me what the error is?"
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.
👁️ mcp-vision-bridge
Give your text-only coding agent eyes.
DeepSeek V4 Flash writes great code — but it can't see the error dialog, the broken UI, or the screenshot you just pasted. This MCP server gives any text-only agent vision by routing images through a multimodal model of your choice.
Works with Claude Code · Codex · opencode · Kimi · PI · Cursor and any MCP client.
Why you need this
Your agent can't see. You paste a screenshot → "I can't see images." You transcribe the error by hand. With this, the agent calls one tool and gets a complete text description — verbatim text, layout, colors, anomalies — and can debug, fix, and explain.
Not a vision model. It's a bridge: it sends your image to a multimodal model you already pay for (mimo, Claude, Gemini, GPT-4o, Qwen-VL…) and returns a detailed description. No images ever enter your agent's context.
Related MCP server: vision-mcp
🚀 Install (pick your agent — that's the whole setup)
Claude Code (one command)
claude plugin marketplace add KuaaMU/agent-plugins
claude plugin install mcp-vision-bridgeThat's it — the plugin bundles the MCP server + vision skill + auto-loop hook. Claude Code will prompt you for your vision endpoint, API key, and model once.
Prefer to manage it in cc-switch (see it + sync to Codex/opencode/Gemini)? Use the installer below instead.
Codex / opencode / Kimi / anything else (one command)
git clone https://github.com/KuaaMU/mcp-vision-bridge && cd mcp-vision-bridge
./install.sh # auto-detects your agent./install.sh claude | codex | opencode | kimi if it doesn't auto-detect. You'll be asked for three values: endpoint, key, model.
Manual (no install script)
Add this as a stdio MCP server in your agent:
{
"command": "npx",
"args": ["-y", "mcp-vision-bridge"],
"env": {
"VISION_OPENAI_BASE_URL": "https://your-endpoint/v1",
"VISION_OPENAI_API_KEY": "sk-your-key",
"VISION_MODEL": "your-vision-model"
}
}Requires Node.js ≥ 18.
🎯 Use
After install, restart your agent, then:
Paste an image (Ctrl+V in Claude Code / Cowork, or drag a file in)
Say "看看这个" (or "analyze this", "what's the error?")
Your agent calls
analyze_image→ the vision model describes it in detail
Paste 3 images? All 3 are captured (the hook reads your session transcript —
lossless, multi-image — no clipboard). The auto-loop hook (Claude Code) makes
"paste + ask" enough. Cowork and Codex save pasted images to files automatically;
image="recent" finds them. For other agents, give a file path.
The one tool
Agent docs → README_AGENT.md (tool contract, source choice, error handling).
analyze_image(
image = "path | URL | clipboard | recent | session | data:URI",
task = "describe | ocr | ui | layout | qa", // or use prompt:
prompt = "What error is on screen?",
detail = "high" | "low",
save_to = "optional file for long output"
)image— local path, http(s) URL,"clipboard","recent"(auto-find the last pasted image across Claude Code / Cowork / Codex),"session", or a base64 data URItask— common jobs;ocrextracts text,uispecs a screen, etc.prompt— free-form question (overridestask)
Demo (mimo-v2.5)
analyze_image → describe/ocr → detailed text. The same tool works with any vision model.
OCR a screenshot → every line reproduced verbatim, including the menu bar
文件(F) 编辑(E) 格式(O) 查看(V) 帮助(H) and the whole body, in reading order.
Describe a diagram → elements, spatial layout, colors, and any anomaly, enumerated.
Architecture
Three parts that close the loop for a text-only agent:
MCP tool (
analyze_image) — the capability. Sends pixels to your vision model, returns text.Skill (
skills/vision/) — the guidance. Tells the agent when and how to call it.Hook (
UserPromptSubmit) — the automation. Captures a pasted image from the session transcript and triggers the call for you.
Install them all with the plugin (Claude Code) or install.sh (any agent).
How it works
Pure text in, pure text out. The server never interprets the image — it fetches the bytes and lets your vision model do the seeing.
Configuration
All via environment variables (the MCP reads them from your agent's server config).
Variable | When | Example |
| OpenAI-compatible |
|
| OpenAI-compatible |
|
| always |
|
| non-openai |
|
| anthropic |
|
| gemini |
|
| optional |
|
| optional |
|
| optional |
|
Development
npm install
npm run build # tsc → dist/
npm test # vitest
npm run test:e2e # stdio pipeline against a mock providerLayout: src/ (server), skills/vision/ (skill), hooks/ (auto-loop hook),
install.sh (installer), examples/ (per-agent templates).
Security
Keys live in env/config only — never in tool arguments.
Optional SSRF guard for URL sources.
Images go only to your configured vision provider.
License
DeepSeek writes the code. mcp-vision-bridge reads the screen.
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
- Flicense-qualityCmaintenanceA stdio MCP server that enables agents without native vision to ask an OpenAI-compatible vision model to describe, OCR, or extract structured data from images via a single tool.Last updated
- AlicenseAqualityBmaintenanceMCP server that provides an analyze_image tool using OpenAI-compatible vision LLMs to describe images from file paths, URLs, or base64 data.Last updated21231MIT
- FlicenseAqualityBmaintenanceOpenAI-compatible vision MCP server with 14 provider presets that enables MCP clients to analyze images, including screenshots, text, and UI mockups, via a single analyze_image tool.Last updated2
- Alicense-qualityCmaintenanceMCP server for analyzing images using multiple vision LLM providers (OpenCode, OpenAI, Anthropic, Google, and custom OpenAI-compatible endpoints). Provides tools to analyze single or multiple images, list providers, and test vision capabilities.Last updatedMIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for Google Veo AI video generation
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/KuaaMU/mcp-vision-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server