drio
Open app

mcp-server-deepseek

Source

A MCP server provides access to DeepSeek-R1's reasoning capabilities for LLMs

Catalog onlyCatalog onlySTDIO

Overview

The mcp-server-deepseek is a Model Context Protocol (MCP) server that provides access to DeepSeek-R1's reasoning capabilities, enabling non-reasoning models to generate improved responses through enhanced thinking.

To use the mcp-server-deepseek, clone the repository, set up a virtual environment, install the package, and configure your DeepSeek API credentials in a .env file. You can then run the server and use the think_with_deepseek_r1 tool to send prompts and receive reasoning content.

  • Access to DeepSeek-R1's reasoning model via API. - Structured reasoning output in a <thinking> format. - Full compatibility with the Model Context Protocol. - Robust error handling and detailed logging.
  1. Enhancing responses from models lacking native reasoning capabilities.
  2. Accessing DeepSeek-R1's reasoning for complex problem-solving tasks.
  3. Integrating structured reasoning into LLMs like Claude that support MCP.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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