vlm-mcp-server
Enables vision and video analysis tasks using locally hosted models via Ollama's OpenAI-compatible API.
Enables vision and video analysis tasks such as UI-to-code conversion, OCR, error diagnosis, diagram analysis, data visualization insights, and video content analysis using OpenAI's Chat Completions or Responses 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., "@vlm-mcp-serverAnalyze this error screenshot and suggest fixes"
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.
VLM MCP Server
中文文档 | English

A Model Context Protocol (MCP) server providing vision & video analysis tools, configurable with any model provider.
This is a reverse-engineered and extended reimplementation of @z_ai/mcp-server (Apache-2.0, credit to Chao Gong, Lei Yuan / Z.AI). It introduces a provider abstraction layer so the same set of tools can run against any of three API families:
Chat Completions — OpenAI-compatible
POST {base}/chat/completions(OpenAI, Z.AI, Zhipu, OpenRouter, Together, Groq, DeepSeek, Moonshot, local Ollama / LM Studio, …)Responses — OpenAI
POST {base}/responses(gpt-4o, o-series reasoning models)Anthropic Messages —
POST {base}/v1/messages(Claude, and Anthropic-compatible gateways)
Quick Start
npx -y @syntx-ai/vlm-mcp-serverThat's it for the server side — it speaks MCP over stdio. You need to configure it in your MCP client. Pick your provider and set three environment variables:
Provider | Environment variables |
Chat Completions |
|
Responses |
|
Anthropic |
|
Claude Code one-liner (Chat Completions example — replace with your values):
claude mcp add -s user vlm-mcp-server \
--env OPENAI_CHAT_COMPLETIONS_API_KEY=sk-... \
OPENAI_CHAT_COMPLETIONS_BASE_URL=https://api.openai.com/v1/ \
OPENAI_CHAT_COMPLETIONS_MODEL=gpt-4o \
-- npx -y @syntx-ai/vlm-mcp-serverFor other clients (Cline, OpenCode, Crush, Roo Code, …), see Client Configuration.
Related MCP server: mcp-see
Available Tools
Image Analysis
Tool | Description |
| Convert UI screenshots to code, prompts, specs, or descriptions |
| OCR — extract code, terminal output, or text from screenshots |
| Analyze error messages and stack traces, suggest fixes |
| Analyze architecture, flowchart, UML, ER, and sequence diagrams |
| Extract insights, trends, and anomalies from charts |
| Visual regression — compare expected vs actual UI, prioritize issues |
| General-purpose image analysis (fallback) |
Video Analysis
Tool | Description |
| Video content analysis (local files or URLs, ≤8MB, MP4/MOV/M4V) |
Configuration
The server loads variables from a .env file at startup (real environment variables take precedence). Three layers are supported; precedence is per-provider groups > generic > legacy.
Per-provider groups
Configure each API family independently. auto picks the first group with both a key and a base URL set.
Variable group | API family |
| Chat Completions |
| Responses |
| Anthropic Messages |
Generic variables
Variable | Description | Default |
| API key | (required) |
| Provider API root | Zhipu default |
| Model name |
|
| Provider family: |
|
| Sampling temperature |
|
| Top-p |
|
| Max output tokens |
|
| Request timeout (ms) |
|
| Retry attempts |
|
| Enable provider-specific reasoning / thinking request fields. Off by default for broad OpenAI-compatible Chat Completions support. |
|
|
|
|
| Custom log file path |
|
Provider auto-detection
In auto mode (when no OPENAI_* group is set), the provider is inferred as follows:
Base URL contains
anthropic, or key starts withsk-ant→anthropicOtherwise →
chat-completions(the most broadly compatible default)
Usage Examples
Once the server is installed in your client, you can use it through conversation. For example, in Claude Code, type describe this demo.png — the MCP Server will process the image and return a description (the image must exist in the current directory).
Outside Claude Code, pasting an image directly into the client will NOT invoke this MCP Server — the client encodes the image and calls the model API itself. Best practice: place images in a local directory and refer to them by name or path in conversation, e.g.
What does demo.png describe?
Troubleshooting
Run the server directly from the command line to verify it starts, isolating environment / permission issues:
# Linux / macOS
OPENAI_CHAT_COMPLETIONS_API_KEY=sk-... \
OPENAI_CHAT_COMPLETIONS_BASE_URL=https://api.openai.com/v1/ \
OPENAI_CHAT_COMPLETIONS_MODEL=gpt-4o \
npx -y @syntx-ai/vlm-mcp-server
# Windows CMD
set OPENAI_CHAT_COMPLETIONS_API_KEY=sk-... && set OPENAI_CHAT_COMPLETIONS_BASE_URL=https://api.openai.com/v1/ && set OPENAI_CHAT_COMPLETIONS_MODEL=gpt-4o && npx -y @syntx-ai/vlm-mcp-server
# Windows PowerShell
$env:OPENAI_CHAT_COMPLETIONS_API_KEY="sk-..."; $env:OPENAI_CHAT_COMPLETIONS_BASE_URL="https://api.openai.com/v1/"; $env:OPENAI_CHAT_COMPLETIONS_MODEL="gpt-4o"; npx -y @syntx-ai/vlm-mcp-serverIf it starts successfully, the environment is correct — the issue is likely in the client's MCP config; double-check it.
If it fails, investigate the error message (pasting it to an LLM for analysis is recommended).
Common issues
Connection failure
Ensure Node.js 18 or newer is installed.
Run
node -vandnpx -vto confirm the runtime is available.Verify the environment variables (
OPENAI_*triple orVLM_*) are set correctly.
Invalid API Key
Confirm the API Key was copied correctly.
Check that the API Key is activated.
Ensure the selected provider family matches the API Key (Chat Completions / Responses / Anthropic).
Check that the API Key has sufficient balance.
Connection timeout
Check your network connection.
Check firewall settings.
Try switching to a different provider family or base URL.
Increase the timeout (
VLM_TIMEOUT, default 300000ms).
Architecture
src/
├── index.ts # Entry point: starts the MCP server, registers all tools
├── types/ # Error types (McpError, ApiError, ValidationError, …)
├── core/
│ ├── environment.ts # Env config (VLM_* + OPENAI_* groups), URL resolution
│ ├── chat-service.ts # Delegates to the active VisionProvider
│ ├── file-service.ts # File validation + base64 encoding (image/video)
│ ├── base-image-service.ts # Shared image-processing logic for all image tools
│ ├── api-common.ts # Message builders, response helpers, retry wrapper
│ ├── error-handler.ts # Error hierarchy + handling/recovery strategies
│ └── logger.ts # stderr + file logger (keeps stdout JSON-clean)
├── providers/ # Pluggable model-provider abstraction
│ ├── types.ts # VisionProvider interface, ChatMessage, postJson helper
│ ├── chat-completions.ts # OpenAI-compatible Chat Completions
│ ├── responses.ts # OpenAI Responses API
│ ├── anthropic.ts # Anthropic Messages API
│ └── index.ts # Provider selection (VLM_PROVIDER / auto-infer)
├── prompts/ # System prompts for each specialized tool
└── tools/ # 8 tool registrations (7 image + 1 video)The provider layer (src/providers/) is the key extension. Each provider implements a VisionProvider interface that takes normalized ChatMessage[] (the OpenAI Chat Completions content-part format as internal lingua franca) and translates it to the provider's wire format. chat-service.ts simply delegates to the resolved provider, so none of the tool code needed to change.
License
Apache-2.0
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
- 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/syntx-ai/vlm-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server