kimi-read-image-mcp
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., "@kimi-read-image-mcpAnalyze this image: ./screenshot.png"
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.
kimi-read-image-mcp
Minimal MCP server for Kimi-compatible image analysis. It exposes exactly one tool, kimi_read_image, and sends local images as inline base64 image_url parts.
What It Does
Exposes one MCP tool:
kimi_read_imageReads a local image file and sends it as an inline base64
image_urlpartNo provider detection: works with any Kimi-compatible endpoint that accepts
image_url
Related MCP server: simple-vision-mcp
Supported Image Formats
image/jpeg(.jpg,.jpeg)image/png(.png)image/gif(.gif)image/webp(.webp)image/bmp(.bmp)image/svg+xml(.svg)image/x-icon(.ico)
Install
Use npx:
npx kimi-read-image-mcp@latestOr install globally:
npm install -g kimi-read-image-mcpMCP Setup
Moonshot example
{
"mcpServers": {
"kimi-image": {
"command": "npx",
"args": ["-y", "kimi-read-image-mcp@latest"],
"env": {
"KIMI_API_KEY": "your-api-key",
"KIMI_API_BASE_URL": "https://api.moonshot.ai/v1",
"KIMI_API_MODEL": "kimi-k2.6"
}
}
}
}Custom endpoint example
{
"mcpServers": {
"kimi-image": {
"command": "npx",
"args": ["-y", "kimi-read-image-mcp@latest"],
"env": {
"KIMI_API_KEY": "your-api-key",
"KIMI_API_BASE_URL": "https://your-endpoint.example.com/v1",
"KIMI_API_MODEL": "your-model"
}
}
}
}Base URL
The server calls the OpenAI-compatible /chat/completions endpoint, so KIMI_API_BASE_URL must be the base path that contains /v1.
Moonshot:
https://api.moonshot.ai/v1Kimi Coding:
https://api.kimi.com/coding/v1
If you omit KIMI_API_BASE_URL, it defaults to https://api.moonshot.ai/v1.
Environment Variables
Variable | Required | Description |
| Yes | API key for the target endpoint |
| No | OpenAI-compatible base URL; defaults to |
| No | Model override; defaults to |
Tool
kimi_read_image
Analyze a local image file.
Arguments:
path: path to a local image fileprompt: optional instruction such asDescribe this image in one short sentence.workFolder: optional working directory for resolving relative paths
Important Limits
This project is intentionally minimal and only implements image analysis.
It does not expose video analysis, web search, shell, file editing, or agent workflows.
It does not implement OCR fallback or local model inference. If your chosen endpoint or model does not accept the native image flow implemented here, the tool fails fast.
Development
npm install
npm run build
npm testLive tests require a local .env file:
KIMI_API_KEY=your-api-key
KIMI_API_BASE_URL=https://api.moonshot.ai/v1
KIMI_API_MODEL=kimi-k2.6Then run:
npm run test:livetest:live runs:
a direct API smoke test for local image analysis
an SDK stdio MCP round-trip that verifies
tools/listandtools/call
License
MIT
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
- 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/hlf20010508/kimi-read-image-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server