DeepSeek MCP Server
Model Context Protocol server for DeepSeek's advanced language models
Overview
DeepSeek MCP Server is a Model Context Protocol (MCP) server designed for seamless integration with DeepSeek's advanced language models, enabling applications like Claude Desktop to utilize these powerful models effectively.
To use the DeepSeek MCP Server, you can install it via Smithery or manually using npm. After installation, configure it in your application by adding the necessary settings to your configuration file.
- Anonymously use the DeepSeek API with a proxy. - Automatic model fallback if the primary model is down. - Resource discovery for available models and configurations. - Enhanced conversation features with multi-turn support.
- Integrating advanced language models into applications.
- Managing complex interactions and conversations in chat applications.
- Training and fine-tuning custom models using conversation data.
Add to your AI client
Use these steps to connect DeepSeek MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"deepseek-mcp-server-dmontgomery40": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deepseek-mcp-server-dmontgomery40"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"deepseek-mcp-server-dmontgomery40": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deepseek-mcp-server-dmontgomery40"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"deepseek-mcp-server-dmontgomery40": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deepseek-mcp-server-dmontgomery40"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"deepseek-mcp-server-dmontgomery40": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deepseek-mcp-server-dmontgomery40"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"deepseek-mcp-server-dmontgomery40": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deepseek-mcp-server-dmontgomery40"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"deepseek-mcp-server-dmontgomery40": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-deepseek-mcp-server-dmontgomery40"
]
}
}
}FAQ
Can I use DeepSeek MCP Server anonymously?
Yes! The server allows anonymous usage of the DeepSeek API.
How do I install the server?
You can install it via Smithery or manually using npm.
What happens if the primary model is down?
The server will automatically switch to the backup model to ensure continuity.