Vision MCP Server
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 MCP Serverdescribe image at https://example.com/photo.jpg"
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 MCP Server
A small, production-shaped Model Context Protocol (MCP) server that gives any MCP client (Claude Desktop / Code, etc.) multimodal vision tools — describe, OCR, visual Q&A, object detection — backed by any vision model via OpenRouter.
Built to be governed by default: every tool instructs the model to abstain ("cannot determine from image") rather than guess — the same source-over-derived discipline I apply across my AI automation work.
Pluggable backend — swap providers/models without touching tool logic. Ships with a real
OpenRouterbackend (standard-library only, no HTTP dependency) and a deterministicMockbackend for offline demos and tests.Runs offline for inspection — the tool logic is verifiable with zero dependencies and no API key.
Tools
Tool | What it does |
| Concise or full description of an image |
| OCR-style verbatim text extraction |
| Visual question answering (abstains when unsupported) |
| Lists distinct objects/items (optionally scoped to categories) |
Images are accepted as a local path, an http(s) URL, or a data: URI.
Related MCP server: MCP Image Extractor
Quickstart
Offline — zero dependencies, no key:
python3 examples/offline_demo.py
python3 -m unittest discover -s tests -qAs a real MCP server:
pip install -r requirements.txt # installs the `mcp` SDK
export OPENROUTER_API_KEY=sk-...
python -m vision_mcp.server # stdio MCP serverThen register it in your MCP client. Env: VISION_MCP_MOCK=1 runs without a key; VISION_MCP_MODEL picks the model.
Architecture
flowchart LR
C["MCP client<br/>(Claude, etc.)"] -->|stdio / MCP| S["Vision MCP Server<br/>(FastMCP)"]
S --> T["Tools<br/>describe · extract · ask · detect"]
T --> BE["VisionBackend<br/>(pluggable)"]
BE --> M["Mock<br/>(offline)"]
BE --> O["OpenRouter<br/>(any vision model)"]
classDef gov fill:#e9ecff,stroke:#5560aa,color:#222;
class T gov;See docs/design.md for the design rationale.
About
Gerardo Dellán — AI Transformation & Automation Program Manager. I lead AI programs and build them hands-on. linkedin.com/in/gerry-df · more patterns: agentic-automation-patterns
License
MIT — see LICENSE.
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.
Latest Blog Posts
- 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/gerardodellan/vision-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server