drio
Open app

DeepSeek-Claude MCP Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

DeepSeek-Claude MCP Server enhances Claude's reasoning capabilities by integrating the advanced reasoning engine of DeepSeek R1, allowing Claude to tackle complex reasoning tasks effectively.

To use the server, install it via Smithery, set up the necessary environment, and run the server alongside Claude Desktop to enable advanced reasoning features.

  • Seamless integration of DeepSeek R1's reasoning with Claude. - Support for intricate multi-step reasoning tasks. - Precision and efficiency in generating thoughtful responses.
  1. Enhancing AI responses in complex queries.
  2. Assisting in decision-making processes requiring advanced reasoning.
  3. Improving the overall performance of Claude in reasoning tasks.

Add to your AI client

Use these steps to connect DeepSeek-Claude 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": {
    "harshj23-deepseek-claude-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-harshj23-deepseek-claude-mcp-server-mcp-mirror"
      ]
    }
  }
}

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": {
    "harshj23-deepseek-claude-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-harshj23-deepseek-claude-mcp-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "harshj23-deepseek-claude-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-harshj23-deepseek-claude-mcp-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "harshj23-deepseek-claude-mcp-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-harshj23-deepseek-claude-mcp-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "harshj23-deepseek-claude-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-harshj23-deepseek-claude-mcp-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "harshj23-deepseek-claude-mcp-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-harshj23-deepseek-claude-mcp-server-mcp-mirror"
      ]
    }
  }
}

FAQ

What are the prerequisites for installation?

Python 3.12 or higher, uv package manager, and a DeepSeek API key are required.

How do I start the server?

The server starts automatically when used with Claude Desktop, provided it is configured correctly.

Is there a troubleshooting guide available?

Yes, a troubleshooting guide is provided in the documentation for setup issues.