vision-bridge-mcp
Allows text-only LLMs to analyze, OCR, and compare images by forwarding them to OpenAI's vision-capable models via the chat completions API.
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., "@vision-bridge-mcpanalyze the image on my clipboard"
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.
vision-bridge-mcp
Vision sidecar MCP server — gives text-only LLMs the ability to see images. Supports OpenAI AND Anthropic API formats natively. Includes model-capability routing skill.
Why?
Most LLMs are text-only — they cannot see images. This MCP server bridges that gap by forwarding images to a vision-capable model and returning text results. It works with any OpenAI-compatible or Anthropic-compatible API endpoint.
When paired with the vision-sidecar skill, it automatically routes based on the host model's capabilities:
Host Model | Image Path |
Text-only (no multimodal) | Calls this MCP's |
Multimodal (gpt-4o / claude vision / gemini / grok, etc.) | Uses native image understanding, does not call this MCP |
Exception: when the system clipboard has an image and the conversation has no path/URL/attachment, even multimodal host models may pass image="clipboard".
Related MCP server: Vision MCP Server
Features
✅ Three tools:
analyze_image,ocr_image,compare_images✅ Dual protocol: OpenAI
chat/completionsAND Anthropicmessagesformat✅ Clipboard support: Windows (PowerShell) + macOS (Swift)
✅ SHA256 file cache with configurable TTL
✅ URL download retry: auto-downloads remote URLs to base64 when passthrough fails
✅ Reasoning model fallback: extracts
reasoning_contentwhencontentis null✅ Full-chain timeout: connection + headers + body reading
✅ Safety limits: 16MB response / 20MB image / 1MB error detail
✅ Typed errors:
VisionInputError/VisionApiError/VisionTimeoutError✅ Comprehensive tests: 30+ unit tests + end-to-end smoke tests
✅ Zero new npm dependencies (uses workspace
node_modules)
Quick Start
Ensure
node≥ 18 is in your PATH.Set environment variables:
export VISION_API_BASE_URL=https://api.example.com/v1 # OpenAI: ends with /v1; Anthropic: base without /v1
export VISION_API_KEY=sk-... # API key
export VISION_MODEL=gpt-4o # Vision model name
# Optional: export VISION_API_FORMAT=anthropic # openai (default) or anthropicRegister in your MCP client config:
{
"id": "vision-bridge-mcp",
"transport": "stdio",
"command": "node",
"args": ["server.js"],
"cwd": "/path/to/vision-bridge-mcp",
"env": {
"VISION_API_BASE_URL": "https://api.example.com/v1",
"VISION_API_KEY": "your-key",
"VISION_MODEL": "gpt-4o"
},
"enabled": true
}Configuration
Variable | Description | Example |
| Vision model API base URL. OpenAI: usually ends with |
|
| API key |
|
| Vision model name |
|
| (Optional) Request protocol: |
|
| (Optional) Max output tokens per call, default 2048 |
|
| (Optional) Cache TTL in seconds, default 3600; |
|
| (Optional) Cache directory, default |
|
| (Optional) |
|
Startup validates the first three variables; missing ones cause a readable error and exit (code 1).
Tools
analyze_image
Prerequisite: Only call when the host model lacks multimodal vision. If the host model is multimodal, use its native image understanding.
image(required, string): Local file path / http(s) URL / base64 dataURL /clipboard.Local path: infers MIME from extension (png/jpg/jpeg/gif/webp/bmp), converts to base64 dataURL.
http(s) URL: passed as
image_urldirectly.dataURL: only
image/*base64 encoding accepted.clipboard/clip/pasteboard: reads current system clipboard image (Windows:scripts/clipboard.ps1, macOS:scripts/clipboard.swift), writes to temp PNG, then normalizes. Linux not supported.
prompt(optional, string): Custom recognition instruction. Default: "Describe this image in detail."Returns: success
{ content: [{ type: "text", text }] }; failure{ content: [{ type: "text", text: "[vision_error] ..." }], isError: true }.
Internal request (split by VISION_API_FORMAT):
OpenAI:
POST {base}/chat/completions, image asimage_urlpart, authAuthorization: Bearer.Anthropic:
POST {base}/v1/messages, image asimageblock (source: {type: base64, media_type, data}or{type: url, url}), authx-api-key+anthropic-version: 2023-06-01(also sendsAuthorization: Bearerfor compatibility).
Default timeout: 60s (covers connection + body reading).
Safety limits: API response 16MB, image download 20MB (content-length precheck + actual size recheck).
Behavior notes (from real model testing):
Reasoning models may return
content: nullwith answer inreasoning_content— automatically falls back.http(s) URL passthrough failure with media/download error → auto-downloads to base64 and retries once.
ocr_image
image(required, string): Same normalization asanalyze_image.languages(optional, string): Language hints (e.g.zh,en).format(optional, enum):plain(default, plain text preserving layout) /markdown(preserves headings/lists/tables) /json(returnsblocksarray withtext+type).Uses
image_url.detail = "high"internally; prompt injected per format.
compare_images
images(required, array, 2–4): Each supports local path / http(s) URL / dataURL / clipboard.prompt(optional, string): Custom comparison instruction. Default: "Compare these images and describe their differences and similarities."Single user message with text + multiple
image_urlparts (detail = "auto").If any URL fails with media/download error, all URLs are downloaded to base64 and retried once.
Vision Sidecar Skill
The vision-sidecar skill provides model-capability routing. When enabled in your MCP client:
Host model has multimodal → uses native image understanding (no MCP call)
Host model is text-only → calls this MCP's
analyze_imageException: clipboard reading available for multimodal host models
Without the skill, the host model's behavior is completely unchanged — zero intrusion.
See skill/vision-sidecar.md for the skill file.
Caching
Enabled by default. Caches vision API results for identical "image + prompt" combinations.
Key:
SHA256(image identifier + "::" + prompt). Local files/dataURLs hashed by base64 content; http(s) URLs hashed by URL string.Storage: One JSON file per key (
{ result, cachedAt }), stored in cache directory.TTL: Default 1 hour. Expired entries auto-deleted on next access.
Disable:
VISION_CACHE_TTL=0(or negative).Note: Key does not include model name. After switching
VISION_MODEL, TTL-period may return cached results from the old model — clear cache directory when switching models.
Testing
cd vision-bridge-mcp
node --testtest/vision.test.js: Core library unit tests (input normalization / message body / API calls / error mapping / timeout / cache / URL retry / OCR / clipboard).test/cache.test.js: Cache module tests (key stability / hit / expiry / corrupted JSON / backward compat).test/smoke.test.mjs: End-to-end smoke test — spawns realserver.jsvia stdio, uses local HTTP stub to simulate vision model, validates tools/list and tool calls.
Comparison with Other Vision MCPs
See docs/COMPARISON.md for a detailed comparison with other vision MCP projects.
License
MIT
This server cannot be installed
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-qualityDmaintenanceEnables text-only LLMs to analyze images by routing them to an OpenAI-compatible vision backend, supporting local files, URLs, and data URLs.34MIT
- AlicenseAqualityDmaintenanceEnables AI agents to analyze images, extract text, compare images, and analyze video through any OpenAI-compatible vision model.455019MIT
- Flicense-qualityCmaintenanceEnables text-only language models to 'see' and describe images by calling multimodal APIs (OpenAI, Anthropic) for image analysis.
- Flicense-qualityCmaintenanceEnables text-only LLMs to process images by describing them through a configurable vision model.
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
LLM chat, text summarization and AI image generation
Image/video analysis: NSFW detection, object detection, thumbnails
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/Catapult291/vision-bridge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server