glm-vision-mcp-server
Enables Claude Code to analyze images using Zhipu AI's GLM-5V-Turbo vision model, supporting local files and URLs with customizable prompts.
README
GLM-Vision MCP Server
Zhipu AI GLM 视觉模型 MCP Server,支持 GLM-5V-Turbo / GLM-4.6V 等,用于 Claude Code。
特性
- 🖼️ 支持本地图片文件路径和远程 URL
- 💬 自定义 prompt,适合 UI 截图→代码、视觉调试等场景
- 🧠 可选 Thinking 模式(复杂推理)
- 📏 200K 上下文 / 128K 最大输出
- 🏆 Design2Code 基准 94.8 分
- ⚡ 一行 npx 部署,无需手动安装
快速开始(npx)
Claude Code settings.json 中添加:
{
"mcpServers": {
"glm-5v": {
"command": "npx",
"args": ["-y", "glm-vision-mcp-server"],
"env": {
"ZAI_API_KEY": "your-zai-api-key"
}
}
}
}
环境变量
| 变量 | 必填 | 默认值 | 说明 |
|---|---|---|---|
ZAI_API_KEY |
✅ | — | Z.AI API Key,去 z.ai 注册获取 |
GLM_MODEL |
否 | glm-5v-turbo |
模型名,可换成 glm-4.6v、glm-4.6v-flash(免费)等 |
本地开发
git clone https://github.com/kira4094/glm-vision-mcp-server.git
cd glm-vision-mcp-server
npm install
本地路径注册到 Claude Code:
{
"mcpServers": {
"glm-5v": {
"command": "node",
"args": ["E:\\Projects\\Claude\\MCP\\GLM\\glm-vision-mcp-server\\src\\index.js"],
"env": {
"ZAI_API_KEY": "your-key-here"
}
}
}
}
工具说明
glm_5v_understand
分析图片的核心工具。
| 参数 | 必填 | 说明 |
|---|---|---|
image |
✅ | 本地路径 (C:/img.png) 或 URL (https://...) |
prompt |
✅ | 对图的指令。越具体越好 |
detail |
否 | 精度: auto / low / high |
max_tokens |
否 | 最大输出(默认 4096,最大 128K) |
temperature |
否 | 采样温度(默认 1) |
thinking |
否 | 启用思考模式 |
使用示例
在 Claude Code 中直接问:
分析这张 UI 截图:
C:\screenshot.png,描述它的布局和配色方案
把这张设计稿生成 HTML + Tailwind CSS:
https://example.com/mockup.png
与 Doubao Vision 的对比
| GLM-5V-Turbo | Doubao Vision 1.6 | |
|---|---|---|
| API 提供商 | Z.AI (智谱) | 字节跳动 |
| 上下文 | 200K | 各有千秋 |
| Design2Code | 94.8 | — |
| 价格 | $1.20/M in · $4.00/M out | 见豆包定价 |
| 特长 | UI→代码、视觉编码 | 通用视觉理解 |
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.