drio
Open app

🧠 DeepSeek MCP Server

Source

MCP server that enhances Claude's reasoning capabilities by integrating DeepSeek R1's advanced reasoning engine

Catalog onlyCatalog onlySTDIO

Overview

DeepSeek MCP Server is a server that enhances Claude's reasoning capabilities by integrating DeepSeek R1's advanced reasoning engine, allowing for complex reasoning tasks.

To use the DeepSeek MCP Server, clone the repository, set up the environment, install dependencies, configure the server, and run it alongside Claude Desktop.

  • Integration with DeepSeek R1 for advanced reasoning. - Multi-step logical analysis strategies. - Confidence evaluation and uncertainty monitoring. - Edge case and bias detection.
  1. Enhancing AI responses with structured reasoning.
  2. Supporting complex decision-making processes.
  3. Improving user interaction through better reasoning capabilities.

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

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

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What are the prerequisites for using the server?

Python 3.12 or higher and the `uv` package manager are required.

How do I set up the API key?

You need to sign up at the INFINI API platform and set the key in the `.env` file.

Is there a license for this project?

Yes, the project is licensed under the MIT License.