DeepSeek-Claude MCP Server

DeepSeek-Claude MCP Server

site icon
2025.03.20 0
Python推理增强对话系统开发效率
DeepSeek-Claude MCP Server 是一个增强 Claude 推理能力的服务,通过集成 DeepSeek R1 的高级推理引擎,使 Claude 能够处理复杂的多步推理任务。该服务旨在提高生成深思熟虑响应的精确性和效率。
View on GitHub

Overview

基本能力

产品定位

DeepSeek-Claude MCP Server 旨在通过集成 DeepSeek R1 的推理能力,增强 Claude 在处理复杂推理任务时的表现。

核心功能

  • 高级推理能力:无缝集成 DeepSeek R1 的推理引擎与 Claude。
  • 多步推理支持:支持复杂的多步推理任务。
  • 高效响应生成:设计用于生成精确且高效的响应。

适用场景

  • 需要复杂推理的对话系统。
  • 多步骤问题解答场景。
  • 需要高精度响应的任务。

使用教程

使用依赖

  • Python 3.12 或更高版本。
  • uv 包管理器。
  • DeepSeek API 密钥(在 DeepSeek Platform 注册获取)。

安装教程

  1. 克隆仓库 bash git clone https://github.com/harshj23/deepseek-claude-MCP-server.git cd deepseek-claude-MCP-server

  2. 设置 UV

  3. Windows: powershell powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
  4. Mac: bash curl -LsSf https://astral.sh/uv/install.sh | sh

  5. 创建虚拟环境 bash uv venv source .venv/bin/activate

  6. 安装依赖 bash uv add "mcp[cli]" httpx

  7. 设置 API 密钥DeepSeek Platform 获取 API 密钥。

  8. 配置 MCP Server 编辑 claude_desktop_config.json 文件,添加以下配置: json { "mcpServers": { "deepseek-claude": { "command": "uv", "args": [ "--directory", "C:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\deepseek-claude", "run", "server.py" ] } } }

  9. 运行服务器 bash uv run server.py

调试方式

  • 重启 Claude Desktop。
  • 验证工具图标是否在界面中可见。
  • 如果服务器不可见,参考 故障排除指南

常见问题解答

  • 服务器不可见:检查配置文件和 API 密钥是否正确设置。
  • 依赖安装失败:确保 Python 和 UV 版本符合要求。

许可证

该项目遵循 MIT 开源许可条款,请参阅 MIT 了解完整条款。