Back to MCP directory
publicPublicdnsLocal runtime

DeepSeek Reasoner

该项目通过集成DeepSeek R1的推理引擎增强Claude的复杂任务处理能力,提供多步骤精确推理支持。

article

README

🚀 DeepSeek-Claude MCP 服务器

本项目通过整合DeepSeek R1的先进推理引擎,增强了Claude的推理能力,使Claude能够利用DeepSeek R1模型的强大推理功能处理复杂的推理任务。

smithery badge

🚀 快速开始

本服务器整合了DeepSeek R1的推理功能与Claude,支持复杂的多步骤推理任务,能以精确和高效的方式生成深思熟虑的回答。你可以按照下面的安装指南进行操作,让Claude拥有更强大的推理能力。

✨ 主要特性

高级推理能力

  • 焕新整合了DeepSeek R1的推理功能与Claude。
  • 支持复杂的多步骤推理任务。
  • 设计用于以精确和高效的方式生成深思熟虑的回答。

📦 安装指南

通过Smithery安装

要自动为Claude Desktop安装DeepSeek-Claude,可使用以下命令:

npx -y @smithery/cli install @HarshJ23/deepseek-claude-MCP-server --client claude

详细安装步骤

先决条件

  • Python 3.12或更高版本
  • uv 包管理器
  • DeepSeek API密钥(在DeepSeek平台注册获取)
  1. 克隆仓库

    git clone https://github.com/harshj23/deepseek-claude-MCP-server.git
    cd deepseek-claude-MCP-server
    
  2. 确保UV已设置

    • Windows:在PowerShell中运行以下命令:
      powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
      
    • Mac:运行以下命令:
      curl -LsSf https://astral.sh/uv/install.sh | sh
      
  3. 创建虚拟环境

    uv venv
    source .venv/bin/activate
    
  4. 安装依赖项

    uv add "mcp[cli]" httpx
    
  5. 设置API密钥

    从这里获取您的API密钥:https://platform.deepseek.com/api_keys
    
  6. 配置MCP服务器 编辑claude_desktop_config.json文件以包含以下配置: claude_desktop_config.json 文件

    {
        "mcpServers": {
            "deepseek-claude": {
                "command": "uv",
                "args": [
                    "--directory",
                    "C:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\deepseek-claude",
                    "run",
                    "server.py"
                ]
            }
        }
    }
    
  7. 运行服务器

    uv run server.py
    
  8. 测试设置

    • 重启Claude Desktop。
    • 确保工具图标在界面中可见。 工具可见 验证工具

🔧 技术细节

推理引擎

该服务器利用DeepSeek R1的先进推理引擎来处理复杂的逻辑推理任务。通过与Claude的集成,用户可以无缝地将强大的推理能力应用到各种场景中。

安装要求

| 属性 | 详情 | |------|------| | 操作系统 | Windows 10或更高版本、macOS X 10.15或更高版本 | | Python版本 | 3.12及以上 | | 内存 | 建议至少4GB RAM |

📄 许可证

本项目遵循MIT License协议。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client