vision-mcp
This server adds vision understanding to MCP-connected agents, letting them hand images to vision models and get back text.
Analyze images (
analyze_image): send 1–9 images (local path, URL, data URI, or base64; mixable) with an optional custom prompt, provider, or model.Describe images (
describe_image): get a default detailed description of image content.OCR (
ocr_image): transcribe text from images inauto/zh/en/zh-en, preserving reading order.List providers (
list_providers): view registered providers, default models, and configuration status.Multi-image workflows: compare, diff, or combine up to 9 images per call, order preserved.
Extensive provider support: OpenAI, Anthropic, Gemini, DashScope, Zhipu, Doubao, ERNIE, StepFun, Ollama, Bailian, SiliconFlow, OpenRouter, and custom OpenAI-compatible endpoints, with configurable retries and fallbacks.
Enables image analysis, description, and OCR using Baidu Qianfan's ERNIE vision models.
Enables image analysis, description, and OCR using Google Gemini's vision models.
Enables image analysis, description, and OCR using local Ollama vision models.
Enables image analysis, description, and OCR using OpenAI's vision models.
Click on "Deploy 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-mcpDescribe the 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 Model Context Protocol (MCP) server that gives vision understanding to agents connected to non-multimodal models (DeepSeek, older GPT-4, local small models, etc.): the agent hands an image to the MCP tool, the server calls a vision model, and returns text.
Supports major providers in China and the US plus any OpenAI-compatible endpoint. Official SDKs first, abstraction before implementation, zero-intrusion provider additions.
中文文档见 README.zh-CN.md
Features
4 tools:
analyze_image/describe_image/ocr_image/list_providers, all returning plain Markdown text13 built-in providers: OpenAI / Anthropic / Google Gemini / Qwen (DashScope) / Zhipu / Doubao (Volcengine) / ERNIE (Qianfan) / StepFun / Ollama / Alibaba Bailian / SiliconFlow / OpenRouter / custom OpenAI-compatible endpoint
Up to 9 images per call (configurable via
VISION_MCP_MAX_IMAGES): local path / http(s) URL / base64 (data URI or raw base64), auto-sniffed, types mixableThree-tier fallback chain: official SDK → OpenAI-compatible endpoint → native fetch (see SPEC §1)
Stateless: every call is independent; images and results are never cached; keys are read from environment variables only
Related MCP server: vision-mcp
Quick start
Option A: npx (published to npm, no repo needed)
npx -y @inferai/vision-mcpOption B: local build
git clone <repo> && cd vision-mcp
pnpm install
pnpm build
node dist/index.jsMCP configuration examples (stdio)
The server speaks the stdio transport: the MCP client spawns the process and exchanges JSON-RPC messages over stdin/stdout. Configure it wherever your client defines MCP servers:
Claude Code: project-level
.mcp.jsonor user-level~/.claude.json(mcpServerskey)Claude Desktop:
claude_desktop_config.jsonAny MCP client (Cursor, self-built agents, etc.): same structure
Windows
On Windows npx resolves to npx.cmd, and MCP clients that spawn processes without a shell can't run it directly — wrap it in cmd /c:
{
"mcpServers": {
"vision-mcp": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@inferai/vision-mcp"],
"env": {
"OPENAI_API_KEY": "sk-...",
"DASHSCOPE_API_KEY": "sk-..."
}
}
}
}Local development (adjust the path; --env-file-if-exists=.env loads .env natively):
{
"mcpServers": {
"vision-mcp": {
"command": "node",
"args": [
"--env-file-if-exists=.env",
"C:\\path\\to\\vision-mcp\\dist\\index.js"
],
"env": {
"OPENAI_API_KEY": "sk-..."
}
}
}
}Linux / macOS
npx runs directly:
{
"mcpServers": {
"vision-mcp": {
"command": "npx",
"args": ["-y", "@inferai/vision-mcp"],
"env": {
"OPENAI_API_KEY": "sk-...",
"DASHSCOPE_API_KEY": "sk-..."
}
}
}
}Local development (adjust the path; --env-file-if-exists=.env loads .env natively):
{
"mcpServers": {
"vision-mcp": {
"command": "node",
"args": [
"--env-file-if-exists=.env",
"/absolute/path/to/vision-mcp/dist/index.js"
],
"env": {
"OPENAI_API_KEY": "sk-..."
}
}
}
}With startup arguments (override provider defaults via argv, see below; on Windows prefix the command/args with cmd /c):
{
"mcpServers": {
"vision-mcp": {
"command": "npx",
"args": [
"-y",
"@inferai/vision-mcp",
"--default-provider=dashscope",
"--siliconflow-api-key=sk-...",
"--siliconflow-model=Qwen/Qwen2.5-VL-7B-Instruct"
],
"env": {
"DASHSCOPE_API_KEY": "sk-..."
}
}
}
}stdio notes:
stdout carries the MCP protocol only — the server never prints logs there; diagnostics go to stderr
the client manages the process lifecycle (spawn on start, kill on exit); no daemon needed
first
npxrun downloads the package and may take a few secondsenv variables can also come from the shell environment if the client inherits it (no
envblock needed)
Debug with MCP Inspector:
pnpm dlx @modelcontextprotocol/inspector node dist/index.js --xxx-api-key=xxx --xxx2-api-key=xxxSetting variables
MCP config
envblock (recommended, most reliable across platforms) — write the variables into theenvobject above.envfile (local development) — copy.env.exampleto.env, fill it in, thennode --env-file-if-exists=.env dist/index.js(Node 22 native, no dotenv needed)Shell export —
export OPENAI_API_KEY=sk-xxxthen run
Providers without keys show as unavailable in list_providers and report the missing variable when called.
Publishing (before npx works)
pnpm publish # or pnpm release (changeset flow)Environment variables
Every provider's API_KEY, BASE_URL, and MODEL support environment overrides (convention: <PROVIDER_PREFIX>_API_KEY / <PROVIDER_PREFIX>_BASE_URL / <PROVIDER_PREFIX>_MODEL):
Provider | Environment variables | Default model |
OpenAI |
|
|
Anthropic |
|
|
Google Gemini |
|
|
Alibaba DashScope |
|
|
Zhipu |
|
|
Volcengine Doubao |
|
|
Baidu Qianfan |
|
|
StepFun |
|
|
Ollama (local) |
| — (no built-in default; endpoint and model must be set) |
Alibaba Bailian |
|
|
SiliconFlow |
|
|
OpenRouter |
|
|
Custom compatible |
| — |
?= optional (has a built-in default);*= required.
Global configuration:
Environment variable | Default | Description |
| first available | Default provider |
| provider default | Default model |
| table order | Provider priority (comma-separated, high first, e.g. |
| 0 (off) | Per-provider retry count before falling back |
| 0 (off) | Max provider fallbacks before giving up |
| 20 MB | Image size limit |
| 9 | Max images per tool call |
| 60000 | Download & request timeout (ms) |
Fallback chain
When multiple providers are available, calls walk the priority chain: configured default → VISION_MCP_PROVIDER_PRIORITY list → table order (unavailable providers are skipped).
each provider is retried up to
VISION_MCP_MAX_RETRIEStimes on provider errors (upstream failures, timeouts)after a provider exhausts its retries, the next available provider in the chain is tried, up to
VISION_MCP_MAX_FALLBACKSfallbacksonly provider errors trigger retry/fallback; config or image errors fail fast
an explicitly requested
providerargument is tried alone (no fallback)when everything fails, the error lists every provider attempted and its last error
Also available as argv: --provider-priority=..., --max-retries=N, --max-fallbacks=N (beat env vars).
MCP startup arguments (argv)
Every provider's apiKey / baseUrl / model can be overridden via startup arguments (higher priority than environment variables), format --<provider>-<field>:
node dist/index.js \
--openai-api-key=sk-xxx \
--openai-base-url=https://my-gateway.example.com/v1 \
--openai-model=gpt-4o-mini \
--dashscope-api-key=sk-xxx \
--default-provider=dashscopeGlobal:
--default-provider <name>/--default-model <name>Per provider:
--<provider>-api-key,--<provider>-base-url,--<provider>-model(equals or space form both work)Any OpenAI-compatible third-party service: wire it up in one line with
--openai-compat-base-url+--openai-compat-api-key+--openai-compat-model; or point any built-in provider'sbase-urlat a mirror/proxy
Priority: tool args provider/model > startup args (per-provider > global default) > environment variables > provider built-in defaults.
Tools
Tool | Arguments | Description |
|
| General image analysis |
|
| Describe image content (default instruction) |
|
| OCR, preserving layout |
| — | Provider list and configuration status |
images accepts a single image or an array (up to VISION_MCP_MAX_IMAGES, default 9): local path / http(s):// URL / data: URI / raw base64, auto-sniffed. Multiple images are seen by the model in the given order (compare, diff, or combine them).
Security note: URL downloads are SSRF-protected — every hop (including redirects) is validated and URLs resolving to loopback, private, or link-local addresses are blocked (hint in the error explains why).
Provider integration (three-tier fallback chain)
provider | Integration | Notes |
| OpenAI-compatible adapter (openai SDK) | One adapter, configurable baseURL |
| Official SDK @anthropic-ai/sdk | messages + image content block |
| Official SDK @google/generative-ai | generateContent + inlineData |
| Native fetch | official npm package has no vision; direct multimodal-generation API |
| Native fetch | official SDK accepts string content only; direct v4 API |
| Native fetch | official openapi is a management plane; direct Ark API |
| Native fetch | official SDK is string-only; AK/SK → token → v2 API |
Adding a provider: for OpenAI-compatible endpoints, add one row to RULES in src/core/config.ts plus one mapping in the factory table in src/index.ts — zero new code. Official SDK or native fetch implementations: see SPEC §1.
Development
pnpm check # biome checks
pnpm test # rstest unit tests (injected mocks, no network)
pnpm build # rslib buildReal-call smoke tests (only run against providers whose keys are configured; skipped otherwise):
OPENAI_API_KEY=sk-... pnpm exec rstest tests/e2eArchitecture
src/
├── index.ts # Entry: composition root, stdio startup
├── core/ # Abstraction: interfaces / image loading / config / registry
├── providers/ # Adapters: official SDK or compatible endpoints, protocol conversion only
└── server/tools.ts # MCP tool layer: zod validation + error mappingFull spec: SPEC.md.
Available Tools
4 toolsanalyze_imageA
Analyze one or more images with a vision model and return the text result. Accepts 1 to 9 images (local path, URL, data URI, or base64; types can be mixed). Pass several images to compare, diff, or combine them — the model sees them in the given order. Use for reading screenshots, photos, charts, UI states, document pages, etc.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model name, overrides the provider default model | |
| images | Yes | One image, or an array of up to 9 images. Each entry: local path / http(s):// URL / data: URI / raw base64 string; types can be mixed. Pass multiple images to compare, diff, or combine them (e.g. before/after pairs, several charts) — order matters. | |
| prompt | No | Analysis instruction; defaults to a detailed description of the image(s) | |
| provider | No | Provider name (e.g. openai / dashscope / zhipu / ollama); defaults to the configured default |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does a good job: it mentions the ability to handle 1-9 images, supports multiple formats (local path, URL, data URI, base64), and clarifies that order is preserved and images can be compared/diffed. This goes beyond what one might assume and helps the agent anticipate multi-image behavior. However, it does not mention any potential failure modes, rate limits, or other operational details that could be relevant, though these may not be necessary for this tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is exceptionally concise—two sentences that efficiently convey the core purpose, input capabilities, and typical use cases. It is front-loaded with the primary function and does not contain redundant or explanatory fluff. Every clause adds value, and the structure flows naturally from what it does to how it behaves with multiple inputs.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with four parameters, no nested objects, and no output schema, the description covers the essential aspects: input types, count limits, ordering, and example use cases. It gives the agent enough to invoke the tool correctly for common scenarios. It does not explain when to prefer this over describe_image or ocr_image, which could be considered a completeness gap given those siblings exist, but the description still stands on its own as a complete usage guide for the tool itself.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, and the schema itself already thoroughly explains the parameters, including the images format, the order-preservation nuance, and the default prompt behavior. The tool description adds little beyond what the schema states. For instance, the description's note about 'compare, diff, or combine' is a rephrasing of the schema's 'compare, diff, or combine' text. Since the schema covers this ground, the description meets the baseline but does not add substantial new meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Analyze one or more images with a vision model and return the text result.' It specifies a verb (analyze) and a resource (images), and indicates the output (text). However, it does not differentiate from the siblings describe_image and ocr_image, which likely serve overlapping purposes. For example, it does not explain how analyze_image is distinct from describe_image beyond the multi-image capability.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool, listing use cases such as 'reading screenshots, photos, charts, UI states, document pages, etc.' This gives an agent a good sense of appropriate scenarios. However, it does not explicitly mention alternatives or exclusions, such as 'use describe_image for single images' or 'use ocr_image for text extraction only,' so the guidance is strong but not exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
describe_imageA
Describe the image content: subject, layout, text, details. Accepts 1 to 9 images; each image is described in the given order. Equivalent to analyze_image with the default description instruction.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model name, overrides the provider default model | |
| images | Yes | One image, or an array of up to 9 images. Each entry: local path / http(s):// URL / data: URI / raw base64 string; types can be mixed. Pass multiple images to compare, diff, or combine them (e.g. before/after pairs, several charts) — order matters. | |
| provider | No | Provider name (e.g. openai / dashscope / zhipu / ollama); defaults to the configured default |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description provides limited behavioral info. It states that it accepts 1–9 images and preserves order, which is useful, but does not mention side effects, authentication, rate limits, or error handling. Since it's a descriptive read operation, the risk is low, but transparency is incomplete.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences convey the core function, parameter limits, and ordering behavior without fluff. The information is front-loaded and efficiently structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema, but the description implies text output via 'Describe the image content'. It covers the input constraints and purpose adequately. While it doesn't specify return format, that is not critical for a description task, and the context is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by explaining the images parameter: 'Pass multiple images to compare, diff, or combine them (e.g. before/after pairs, several charts) — order matters.' This enriches understanding beyond the schema's generic descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Describe') and resource ('image content') with explicit scope (subject, layout, text, details). It also distinguishes from siblings by noting it is 'Equivalent to analyze_image with the default description instruction', which clarifies its relationship to a similar tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by mentioning equivalence to analyze_image, suggesting that custom instructions would require analyze_image. However, it does not explicitly state when to use this tool over ocr_image or list_providers, leaving some ambiguity. Still, the core use case is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_providersA
List all registered vision model providers, their default models, and configuration status. Providers without keys will error when called.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries full burden. It mentions that providers without keys will error when called, which is a useful behavioral warning. However, it doesn't disclose potential side effects (though listing is read-only, it could be mistaken), nor does it explain implications of configuration status, but the warning is a positive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, extremely concise, and front-loaded with the core action (list all providers) and output details. Every sentence provides value: the second clarifies error behavior. No redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, no output schema, no annotations), the description covers key aspects: what it lists, the error condition. It lacks explicit mention of the exact return format or whether it includes provider IDs, but for a list tool, this is largely sufficient. A minor gap is not specifying if it returns configuration status as structured data or human-readable text.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there are no parameter semantics to explain. The description focuses on the output content (default models, configuration status), which is sufficient. With no parameters, a baseline of 4 is appropriate as the description adds meaning about the result.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists all registered vision model providers, including their default models and configuration status. It distinguishes itself from sibling tools (analyze/describe/ocr) which are image-related operations, though it doesn't explicitly compare.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description doesn't explicitly state when to use this tool vs alternatives, but the purpose is clear enough that an agent would know it's for listing providers, not image analysis. It conveys usage context implicitly by listing what it returns, but no explicit exclusions or alternative tool references.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ocr_imageA
OCR: transcribe all text in the image(s), preserving reading order and paragraph structure. Accepts 1 to 9 images; transcripts follow the given order. Suitable for screenshots, scans, invoices, slides, etc.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model name, overrides the provider default model | |
| images | Yes | One image, or an array of up to 9 images. Each entry: local path / http(s):// URL / data: URI / raw base64 string; types can be mixed. Pass multiple images to compare, diff, or combine them (e.g. before/after pairs, several charts) — order matters. | |
| language | No | Recognition language; defaults to auto | |
| provider | No | Provider name (e.g. openai / dashscope / zhipu / ollama); defaults to the configured default |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden and does disclose meaningful behavior: preserving reading order and paragraph structure, accepting 1–9 images, and returning transcripts in the given order. It does not mention output format or error behavior, but the core read-only transcription behavior is well covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences with the core action front-loaded. Every sentence earns its place, and there is no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose, input limits, ordering, and typical use cases, which is sufficient for an agent to select and invoke the tool. Since there is no output schema, a brief note on return format would improve completeness, but this is a minor gap for a simple OCR tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description reinforces image order and count, which the schema already documents, but adds no parameter-level meaning for model, language, or provider beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('transcribe all text') and resource ('image(s)'), and adds output characteristics (reading order, paragraph structure). This clearly distinguishes it from sibling tools like analyze_image and describe_image.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives concrete use cases (screenshots, scans, invoices, slides) but does not explicitly state when to choose this tool over analyze_image or describe_image, nor when not to use it. The differentiation is implied by the OCR action rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
v1.1.1- Changed
analyze_image4 fields changed- removed
Input schema / properties / imageRemoved value: -{ - "description": "Image: local path / http(s):// URL / data: URI / raw base64 string", - "minLength": 1, - "type": "string" -} - added
Input schema / properties / imagesAdded value: +{ + "anyOf": [ + { + "description": "local path / http(s):// URL / data: URI / raw base64 string", + "minLength": 1, + "type": "string" + }, + { + "description": "Array of 9 images max; order is preserved when the model sees them", + "items": { + "description": "local path / http(s):// URL / data: URI / raw base64 string", + "minLength": 1, + "type": "string" + }, + "maxItems": 9, + "minItems": 1, + "type": "array" + } + ], + "description": "One image, or an array of up to 9 images. Each entry: local path / http(s):// URL / data: URI / raw base64 string; types can be mixed. Pass multiple images to compare, diff, or combine them (e.g. before/after pairs, several charts) — order matters." +} - changed
Input schema / properties / prompt / descriptionPrevious value: -"Analysis instruction; defaults to a detailed description"New value: +"Analysis instruction; defaults to a detailed description of the image(s)" - changed
Input schema / requiredPrevious value: -[ - "image" -]New value: +[ + "images" +]
- Changed
describe_image3 fields changed- removed
Input schema / properties / imageRemoved value: -{ - "description": "Image: local path / http(s):// URL / data: URI / raw base64 string", - "minLength": 1, - "type": "string" -} - added
Input schema / properties / imagesAdded value: +{ + "anyOf": [ + { + "description": "local path / http(s):// URL / data: URI / raw base64 string", + "minLength": 1, + "type": "string" + }, + { + "description": "Array of 9 images max; order is preserved when the model sees them", + "items": { + "description": "local path / http(s):// URL / data: URI / raw base64 string", + "minLength": 1, + "type": "string" + }, + "maxItems": 9, + "minItems": 1, + "type": "array" + } + ], + "description": "One image, or an array of up to 9 images. Each entry: local path / http(s):// URL / data: URI / raw base64 string; types can be mixed. Pass multiple images to compare, diff, or combine them (e.g. before/after pairs, several charts) — order matters." +} - changed
Input schema / requiredPrevious value: -[ - "image" -]New value: +[ + "images" +]
- Changed
ocr_image3 fields changed- removed
Input schema / properties / imageRemoved value: -{ - "description": "Image: local path / http(s):// URL / data: URI / raw base64 string", - "minLength": 1, - "type": "string" -} - added
Input schema / properties / imagesAdded value: +{ + "anyOf": [ + { + "description": "local path / http(s):// URL / data: URI / raw base64 string", + "minLength": 1, + "type": "string" + }, + { + "description": "Array of 9 images max; order is preserved when the model sees them", + "items": { + "description": "local path / http(s):// URL / data: URI / raw base64 string", + "minLength": 1, + "type": "string" + }, + "maxItems": 9, + "minItems": 1, + "type": "array" + } + ], + "description": "One image, or an array of up to 9 images. Each entry: local path / http(s):// URL / data: URI / raw base64 string; types can be mixed. Pass multiple images to compare, diff, or combine them (e.g. before/after pairs, several charts) — order matters." +} - changed
Input schema / requiredPrevious value: -[ - "image" -]New value: +[ + "images" +]
4 tool updates
v1.0.0- First observed
analyze_image - First observed
describe_image - First observed
list_providers - First observed
ocr_image
TDQS
Scored across 4 tools
analyze_image, describe_image, and ocr_image all accept the same input and return text results. describe_image is explicitly described as equivalent to analyze_image with a default instruction, and ocr_image is just a specialized prompt variant. This creates significant overlap and makes it unclear when to choose one over another. Only list_providers is clearly distinct.
All tool names use snake_case with a verb-first pattern: analyze_image, list_providers, describe_image, ocr_image. The only minor deviation is ocr_image using an acronym instead of a plain verb, but it still fits the pattern. Overall, naming is predictable and consistent.
With only 4 tools, the server is on the low end of the typical range. However, 3 of the 4 tools essentially perform the same task with different prompt variations, so the effective functionality is even more limited. The count feels padded rather than well-scoped, and could be reduced to just analyze_image and list_providers without loss.
The server covers the core functionality of image analysis, including general analysis, description, and OCR, plus provider list management. Since analyze_image is generic and accepts multiple images for comparison, it covers most basic vision tasks. Minor gaps include lack of explicit model management or configuration tools, but list_providers partially addresses this.
Maintenance
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
MCP server for building and testing AI agents with multi-model experimentation and insights.
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
The Remote MCP server acts as a standardized bridge between LLM applications (like Claude, ChatGPT, and Cursor) and external services, enabling AI agents to access external tools and resources. Its primary capability is providing a centralized search tool to discover other MCP servers and their respective tools. Unlike local implementations, it runs remotely with OAuth authentication and permission controls for security.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceA versatile MCP server that adds vision capabilities (image analysis, OCR, image/video generation) to AI models lacking native vision, with support for multiple providers and automatic task routing.1-
- AlicenseAqualityBmaintenanceMCP server that provides an analyze_image tool using OpenAI-compatible vision LLMs to describe images from file paths, URLs, or base64 data.1191MIT
- 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.2-
- AlicenseNot gradedqualityCmaintenanceMCP 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.MIT