deepseek-mcp
by arizen-dev·★ 48·Score 45
A tiny MCP server exposing DeepSeek as a cheap supervised worker for Claude Code, Codex, or any MCP client.
Overview
deepseek-mcp is a minimal stdio-based MCP server with two primary tools: 'deepseek' for fast, cheap, non-thinking tasks and 'advise' for deep reasoning. It's designed for bounded tasks where another model can reduce mechanical load, such as classification, summarization, template population, and producing reviewable candidate outputs. The server communicates via JSON-RPC, streams responses, and includes metadata like model, latency, tokens, and cost.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when you need a cost-effective AI worker for mechanical tasks, classification, or data transformation, especially if you already have DeepSeek API access.
When NOT to choose this
Don't choose this for complex architecture design, security policy decisions, or when you need a final polished output without human review.
Tools this server exposes
2 tools extracted from the READMEdeepseekdeepseek(prompt, system?)Fast, cheap, non-thinking processing for classification, extraction, formatting, and mechanical edits
adviseadvise(prompt, system?, effort?)Deep reasoning with configurable effort for architecture, tradeoffs, and second opinions
Comparable tools
Installation
Quick Install
Zero-install with uvx:
deepseek-mcp-serverOr install permanently:
pip install deepseek-mcpFor Claude Desktop, add to ~/.claude/settings.json:
{
"mcpServers": {
"deepseek": {
"command": "deepseek-mcp-server",
"args": [],
"env": {
"DEEPSEEK_API_KEY": "${DEEPSEEK_API_KEY}"
}
}
}
}Export your DeepSeek API key:
export DEEPSEEK_API_KEY="sk-..."FAQ
- What models are used by the deepseek and advise tools?
- The 'deepseek' tool uses deepseek-v4-flash for fast, non-thinking tasks, while 'advise' uses deepseek-v4-pro for deep reasoning with adjustable effort levels.
- How can I test if my setup is working?
- Use the CLI smoke test: `python -m deepseek_mcp check` or run a one-shot call with `python -m deepseek_mcp run "your prompt"`. You can also test directly with JSON-RPC as shown in the README.
Compare deepseek-mcp with
Last updated · Auto-generated from public README + GitHub signals.