DeepSeek Vision Bridge
Provides visual analysis of images by sending them to Google Gemini, returning structured text results (answer, description, objects, uncertainties) for text-only AI models to process.
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., "@DeepSeek Vision BridgeAnalyze the image at /home/user/photo.jpg and describe the scene."
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.
DeepSeek Vision Bridge
A visual perception bridge enabling text-only AI models (such as DeepSeek) to see and read images via Google Gemini.
When sending images to a model that lacks vision capabilities, this tool automatically forwards the image to Gemini for visual analysis and returns structured text results for the AI model to process.
Prerequisites
Python 3.10+ — Download from python.org (Make sure to check "Add Python to PATH" during installation)
Free Gemini API Key — Obtain from aistudio.google.com/apikey
Related MCP server: GeminiMcpServer
Installation
Step 1: Clone the Repository
Open PowerShell (press Win + R, type powershell, and press Enter) and run:
git clone https://github.com/tqctqc1/deepseek-vision-mcp.git
cd deepseek-vision-mcpIf Git is not installed, download it from git-scm.com or click Code -> Download ZIP on GitHub, extract it, and open PowerShell inside the folder.
Step 2: Install Dependencies & Bootstrap (Self-Healing)
Run the one-command bootstrap script in PowerShell:
powershell -ExecutionPolicy Bypass -File .\ensure_env.ps1Or via CLI:
python vision_cli.py --setupThis automatically creates .venv, installs dependencies, sets up .env, and verifies environment health.
Check environment health (<1s check):
python vision_cli.py --health --prettyStep 3: Configure API Key
Copy-Item .env.example .envOpen .env in Notepad and replace put-your-key-here with your Gemini API key:
GEMINI_API_KEY=AIzaSy...your-api-key...Save the file. Do not share your .env file publicly.
Usage
Option 1: Command-Line Interface (CLI)
Analyze a local image:
python vision_cli.py --image-path "C:\path\to\image.png" --question "Describe the contents of this image." --prettyAnalyze an image from a URL:
python vision_cli.py --image-url "https://example.com/image.jpg" --question "Transcribe text in this image." --prettyOption 2: Integration with Claude Desktop (plugin marketplace)
This repository is a Claude plugin marketplace. In Claude Desktop:
Open Settings -> Plugins -> Add marketplace and paste:
https://github.com/tqctqc1/deepseek-vision-mcpClick Sync, then install the deepseek-vision plugin.
Claude copies the plugin to a managed directory. Run the 1-command bootstrap inside that plugin directory:
powershell -ExecutionPolicy Bypass -File .\ensure_env.ps1Then put your Gemini API key in
.env.Restart Claude Desktop and confirm the
vision_analyzetool appears.
Requires
pythonto be on your PATH. If you prefer manual MCP configuration instead, follow Option 3.
Option 3: Integration with Claude Desktop (manual MCP)
Open the Claude Desktop configuration file:
notepad "$env:APPDATA\Claude\claude_desktop_config.json"Add the following under mcpServers (update the paths to match your installation directory):
{
"mcpServers": {
"deepseek-vision": {
"command": "C:\\path\\to\\deepseek-vision-mcp\\.venv\\Scripts\\python.exe",
"args": ["C:\\path\\to\\deepseek-vision-mcp\\server.py"],
"env": { "PYTHONUTF8": "1" }
}
}
}Save the file, exit Claude Desktop completely, and reopen it.
Option 4: Integration with Codex
Install the marketplace, then the plugin:
codex marketplace add tqctqc1/deepseek-vision-mcp
codex plugin install deepseek-vision@deepseek-vision-mcpThe Codex plugin bundles skills that tell the agent to use the vision_analyze MCP tool, with a CLI fallback (vision_cli.py) when the MCP server is unavailable. Like other marketplace installs, the plugin cache does not include a venv — create it in the installed plugin directory if the CLI fallback is needed:
python -m venv --system-site-packages "$env:USERPROFILE\.codex\plugins\cache\deepseek-vision-mcp\deepseek-vision\1.0.0\.venv"Output Format
The tool returns a JSON object containing 4 fields:
Field | Description |
| Direct answer to your question |
| Comprehensive visual description of the image |
| List of detected objects |
| Ambiguities or low-confidence details |
Supported Image Formats
PNG, JPEG, WebP, HEIC, HEIF — up to 10 MB.
Troubleshooting
Error | Solution |
| Verify your |
| Double check the image path |
| Reinstall Python and make sure to check "Add to PATH" |
Claude Desktop says "This repository isn't a marketplace" | Make sure you added the marketplace URL |
Claude Desktop does not show the tool | Verify config paths / setup steps and restart Claude Desktop |
MCP tool | The plugin MCP server failed to start — run the venv setup in the installed plugin directory and confirm |
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.
Related MCP Servers
- AlicenseAqualityDmaintenanceAllows AI assistants to generate and transform high-quality images from text prompts using Google's Gemini model via the MCP protocol.Last updated334MIT
- FlicenseDqualityDmaintenanceEnables seamless integration between MCP-compatible clients (like LM Studio) and Google Gemini API for image generation and multimodal tasks. Provides a hybrid local-cloud workflow combining local LM Studio execution with Gemini's cloud-powered image generation capabilities.Last updated13
- AlicenseAqualityBmaintenanceBridges a vision model to enable text-only models like DeepSeek to describe images, extract text, and compare images via MCP tools.Last updated513410MIT
- FlicenseAqualityBmaintenanceEnables text-only agents to process images by accepting image files, base64 data, or URLs, sending them to multimodal models, and returning structured text results via MCP.Last updated4
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
MCP server for Google Veo AI video generation
Generate on-brand images from your AI agent: design, edit, and render templates over MCP.
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/tqctqc1/deepseek-vision-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server