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 "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., "@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 deployed
Maintenance
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Edit images over MCP with object removal, background removal, and guided generative edits.
Use AI models for chat, image, and video generation from Claude Code and other MCP hosts.
Connect MCP clients to 2,000+ AI models without managing provider API keys.
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.334MIT
- 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.13-
- AlicenseAqualityDmaintenanceBridges a vision model to enable text-only models like DeepSeek to describe images, extract text, and compare images via MCP tools.528 npm9MIT
- AlicenseNot gradedqualityCmaintenanceProvides vision capabilities to text-only LLMs via MCP, enabling image understanding, Q&A, OCR, and image processing through cloud multimodal APIs.MIT