MCP Catalogs
Home

deepseek-mcp-server

by DMontgomery40·334·Score 50

A comprehensive MCP server exposing DeepSeek V4 API tools for chat completions, model listing, and balance checking.

ai-llmdeveloper-toolsproductivity
52
Forks
0
Open issues
1 mo ago
Last commit
2d ago
Indexed

Overview

The DeepSeek MCP Server provides seamless integration with DeepSeek's advanced language models through the Model Context Protocol. It exposes key API surfaces including chat completions with thinking capabilities, function calling, FIM completion, model listing, and user balance checking. The server supports both local and remote deployment options with comprehensive documentation for various clients including Claude, Cursor, and Codex.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Integrating DeepSeek models into AI assistants and workflows through MCP
you:Building applications with function calling and reasoning capabilities
you:Managing and monitoring DeepSeek API usage and account balance
you:What models does this server support?
you:Does this support function calling?

When to choose this

Choose this MCP server if you need to integrate DeepSeek's language models into your workflow via MCP protocol, especially if you want access to their thinking and reasoning features.

When NOT to choose this

Don't choose this if you need features not exposed by DeepSeek's V4 API, such as speculative image/video upload tools or V4 monitoring capabilities.

Tools this server exposes

6 tools extracted from the README
  • chat_completion

    DeepSeek V4 chat with advanced features like thinking, reasoning effort, and conversation memory.

  • completion

    DeepSeek V4 Pro FIM (Fill in Middle) completion for code completion tasks.

  • list_models

    Read the live list of available DeepSeek models.

  • get_user_balance

    Read account balance and API availability status.

  • reset_conversation

    Clear an in-memory conversation to start fresh.

  • list_conversations

    List all in-memory conversation IDs.

Comparable tools

openai-mcp-serveranthropic-mcp-servercohere-mcpollama-mcp

Installation

Installation

Local Stdio

DEEPSEEK_API_KEY="your-api-key" npx -y deepseek-mcp-server

Docker

docker pull docker.io/dmontgomery40/deepseek-mcp-server:0.5.0
docker run --rm -i -e DEEPSEEK_API_KEY="your-api-key" docker.io/dmontgomery40/deepseek-mcp-server:0.5.0

Claude Desktop

Add to your Claude Desktop config:

{
  "mcpServers": {
    "deepseek": {
      "command": "npx",
      "args": ["-y", "deepseek-mcp-server"],
      "env": {
        "DEEPSEEK_API_KEY": "your-api-key"
      }
    }
  }
}

Remote Hosted

codex mcp add deepseek --url https://deepseek-mcp.ragweld.com/mcp --bearer-token-env-var DEEPSEEK_MCP_AUTH_TOKEN

FAQ

What models does this server support?
The server supports DeepSeek V4 models including 'deepseek-v4-flash' and 'deepseek-v4-pro', with 'deepseek-v4-flash' as the default for chat completions.
Does this support function calling?
Yes, the chat completion tool supports function tools and can make function calls when appropriate.

Compare deepseek-mcp-server with

GitHub →

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