MCP Catalogs
Home

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.

ai-llmdeveloper-toolsproductivity
6
Forks
1
Open issues
this month
Last commit
2d ago
Indexed

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:

you:Classifying inboxes, tickets, logs, notes or documents
you:Summarizing packets or converting messy text into JSON/tables
you:Generating first-pass mechanical edits for review
you:What models are used by the deepseek and advise tools?
you:How can I test if my setup is working?

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 README
  • deepseekdeepseek(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

openai-mcpanthropic-mcpollama-mcpperplexity-mcp

Installation

Quick Install

Zero-install with uvx:

deepseek-mcp-server

Or install permanently:

pip install deepseek-mcp

For 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.