by ruixingshi
deepseek-thinker-mcp is a Model Context Protocol (MCP) provider that delivers Deepseek reasoning content to MCP-enabled AI clients. It allows AI clients to access Deepseek's thought processes, enhancing their capabilities with advanced reasoning.
Deepseek Thinker MCP Server is a Model Context Protocol (MCP) provider that delivers Deepseek reasoning content to MCP-enabled AI clients, such as Claude Desktop. It allows AI clients to access Deepseek's thought processes, either by connecting to the Deepseek API service or a local Ollama server.
To use Deepseek Thinker MCP Server, you need to integrate it with an AI client like Claude Desktop. This involves configuring the mcpServers
section in your claude_desktop_config.json
file. You can choose between OpenAI API mode or Ollama mode by setting the appropriate environment variables (API_KEY
, BASE_URL
for OpenAI API, or USE_OLLAMA=true
for Ollama).
For local server configuration, you can specify the path to the built index.js
file. Development setup involves installing dependencies (npm install
), building the project (npm run build
), and running the service (node build/index.js
).
get-deepseek-thinker
Tool: A tool to perform reasoning using the Deepseek model, taking originPrompt
as input and returning a structured text response of the reasoning process.Q: Response like this: "MCP error -32001: Request timed out"
A: This error typically occurs when the Deepseek API response is too slow or when the reasoning content output is excessively long, leading to a timeout of the MCP server.
A MCP (Model Context Protocol) provider Deepseek reasoning content to MCP-enabled AI Clients, like Claude Desktop. Supports access to Deepseek's thought processes from the Deepseek API service or from a local Ollama server.
🤖 Dual Mode Support
🎯 Focused Reasoning
originPrompt
(string): User's original promptSet the following environment variables:
API_KEY=<Your OpenAI API Key>
BASE_URL=<API Base URL>
Set the following environment variable:
USE_OLLAMA=true
Add the following configuration to your claude_desktop_config.json
:
{
"mcpServers": {
"deepseek-thinker": {
"command": "npx",
"args": [
"-y",
"deepseek-thinker-mcp"
],
"env": {
"API_KEY": "<Your API Key>",
"BASE_URL": "<Your Base URL>"
}
}
}
}
{
"mcpServers": {
"deepseek-thinker": {
"command": "npx",
"args": [
"-y",
"deepseek-thinker-mcp"
],
"env": {
"USE_OLLAMA": "true"
}
}
}
}
{
"mcpServers": {
"deepseek-thinker": {
"command": "node",
"args": [
"/your-path/deepseek-thinker-mcp/build/index.js"
],
"env": {
"API_KEY": "<Your API Key>",
"BASE_URL": "<Your Base URL>"
}
}
}
}
# Install dependencies
npm install
# Build project
npm run build
# Run service
node build/index.js
This error occurs when the Deepseek API response is too slow or when the reasoning content output is too long, causing the MCP server to timeout.
This project is licensed under the MIT License. See the LICENSE file for details.
Reviews feature coming soon
Stay tuned for community discussions and feedback