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.
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:
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 READMEchat_completionDeepSeek V4 chat with advanced features like thinking, reasoning effort, and conversation memory.
completionDeepSeek V4 Pro FIM (Fill in Middle) completion for code completion tasks.
list_modelsRead the live list of available DeepSeek models.
get_user_balanceRead account balance and API availability status.
reset_conversationClear an in-memory conversation to start fresh.
list_conversationsList all in-memory conversation IDs.
Comparable tools
Installation
Installation
Local Stdio
DEEPSEEK_API_KEY="your-api-key" npx -y deepseek-mcp-serverDocker
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.0Claude 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_TOKENFAQ
- 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
Last updated · Auto-generated from public README + GitHub signals.