mcp-vision-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., "@mcp-vision-serverwhat's in this image?"
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-server
One MCP server for every OpenAI-compatible vision model.
Configure once and use the same analyze_image tool across OpenAI, DeepSeek, OpenRouter, Zhipu, Bailian, SiliconFlow and other compatible providers. It works with Claude Code, Codex, Cursor, Zed and any other MCP client.
Why use mcp-vision-server?
✅ Works with any MCP client – Claude Code, Codex, Cursor, Zed and more.
✅ Works with many providers – switch providers without changing prompts or tool calls.
✅ One unified API – one tool (
analyze_image) for every OpenAI-compatible vision endpoint.✅ Flexible image input – URL, local file or Base64 are detected automatically.
✅ Override anywhere – configure globally with environment variables or per request.
Related MCP server: Vison-MCP
Quick Start
Install the server.
Set your provider and API key.
Add the MCP server to your client.
Ask:
Describe this screenshot.If everything is configured correctly, your MCP client will automatically call analyze_image and return the vision model's response.
Features
Single
analyze_imagetool with a consistent interface.Supports URL, local file and Base64 image inputs.
Supports 14 built-in provider presets.
Provider selection via
VISION_PROVIDERor theproviderparameter.Environment-level and request-level configuration overrides.
Example
Ask your MCP client to analyze an image:
Analyze this screenshot and tell me what UI is shown.The client calls the MCP tool:
{
"tool": "analyze_image",
"arguments": {
"image": "/path/to/screenshot.png",
"prompt": "Analyze this screenshot and tell me what UI is shown."
}
}The server normalizes the image input, sends it to the selected OpenAI-compatible vision provider, and returns a plain text answer to your MCP client.
Providers
Built-in presets make common OpenAI-compatible vision endpoints easy to use:
Provider | Preset |
Zhipu |
|
Bailian / DashScope |
|
DeepSeek |
|
OpenAI |
|
SiliconFlow |
|
OpenRouter |
|
Ark / Volcengine |
|
StepFun |
|
Kimi / Moonshot |
|
MiniMax |
|
ModelScope |
|
NVIDIA NIM |
|
Novita AI |
|
You can also use any other OpenAI-compatible vision endpoint by setting VISION_BASE_URL, VISION_API_KEY, and VISION_MODEL manually.
Install & Run
Requires Python ≥ 3.10 and uv.
cd mcp-vision-server
uv sync # install deps
uv run pytest -v # run tests
uv run ruff check . # lint
uv run mcp-vision-server # start stdio serverConfiguration
Option 1: Provider preset (recommended)
export VISION_PROVIDER=zhipu # default
export VISION_API_KEY=your_keySee Providers for the full preset list.
You can also use provider-specific env vars (e.g. DASHSCOPE_API_KEY, OPENAI_API_KEY) as fallback.
Option 2: Manual
Variable | Required | Description |
| Yes | API key |
| No | OpenAI-compatible endpoint |
| No | Model name |
Tool params (override env per call): image, prompt, image_type, provider, base_url, api_key, model, temperature, max_tokens.
MCP Client Setup
Claude Code (.mcp.json)
{
"mcpServers": {
"vision": {
"command": "uv",
"args": ["run", "--directory", "/path/to/mcp-vision-server", "mcp-vision-server"],
"env": {
"VISION_PROVIDER": "zhipu",
"VISION_API_KEY": "your_key"
}
}
}
}Claude Code Plugin
# After PyPI publish
claude plugins install RuyimgByCN/mcp-vision-server
# Local test
claude plugins install /path/to/mcp-vision-serverThe repo includes a .claude-plugin.json manifest — claude plugins install reads it automatically.
Codex (OpenAI Codex CLI)
Edit ~/.codex/config.toml:
[mcp_servers.vision]
command = "uvx"
args = ["mcp-vision-server"]
env = { VISION_PROVIDER = "zhipu", VISION_API_KEY = "your_key" }Or for local dev:
[mcp_servers.vision]
command = "uv"
args = ["run", "--directory", "/path/to/mcp-vision-server", "mcp-vision-server"]
env = { VISION_PROVIDER = "zhipu", VISION_API_KEY = "your_key" }Cursor / other uvx clients
Replace command with uvx, args with ["--from", "/path/to/mcp-vision-server", "mcp-vision-server"], same env.
Provider Examples
// Bailian
"env": { "VISION_PROVIDER": "bailian", "VISION_API_KEY": "your_key" }
// OpenAI
"env": { "VISION_PROVIDER": "openai", "VISION_API_KEY": "sk-xxx" }
// Fully custom
"env": {
"VISION_BASE_URL": "https://your-endpoint/v1",
"VISION_API_KEY": "your_key",
"VISION_MODEL": "your-model"
}Architecture
MCP Client (Claude Code / Codex / Cursor / Zed)
│
▼
mcp-vision-server
│
├── mcp_vision_server/server.py # MCP tool entrypoints
├── mcp_vision_server/config.py # env/provider/parameter resolution
├── mcp_vision_server/image.py # URL/file/base64 normalization
└── mcp_vision_server/providers.py # provider presets
│
▼
OpenAI-compatible Vision API
│
▼
Vision model responseFAQ
Why not call the vision provider directly?
This server gives MCP clients a single, reusable vision tool. You can switch providers without changing client prompts, MCP tool names, or client-side integration code.
Can I use a provider that is not listed?
Yes. Use manual configuration with VISION_BASE_URL, VISION_API_KEY, and VISION_MODEL for any OpenAI-compatible vision endpoint.
Can I override the provider per request?
Yes. Use the provider, base_url, api_key, or model tool parameters to override environment-level configuration for a single call.
What image formats are supported?
The server accepts image URLs, local file paths, and Base64 strings. Input type can be auto-detected or specified with image_type.
Development
uv sync --all-groups
uv run ruff check .
uv run ruff format .
uv run pytest -v
uv build
uv run twine check dist/*Release checklist
Update the version in
pyproject.toml.Run
uv run ruff check .,uv run pytest -v,uv build, anduv run twine check dist/*.Create and push a version tag, for example
v0.1.2.Let GitHub Actions publish to PyPI through trusted publishing.
Roadmap
Add more provider presets when stable OpenAI-compatible vision endpoints are available.
Add richer examples for Claude Code, Codex, Cursor, and other MCP clients.
Add optional streaming response support if MCP client UX benefits from it.
Split provider-specific behavior into plugins only when providers require custom request logic.
About
Author: RuyimgByCN
License: Personal use only. Commercial use is prohibited — see LICENSE for details. Contact the author for commercial licensing.
中文说明: 个人使用免费,禁止商用。商业授权请联系作者。详见 README_ZH.md。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
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/RuyimgByCN/mcp-vision-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server