{"type":"mcp_server","name":"deepseek-thinker-mcp","description":"This repository provides a Model Context Protocol (MCP) server, enabling AI clients like Claude Desktop to access Deepseek's reasoning process from the Deepseek API or a local Ollama server. It","category":"AI","language":"JavaScript","stars":69,"forks":7,"owner":"ruixingshi","github_url":"https://github.com/ruixingshi/deepseek-thinker-mcp","homepage":null,"setup":"## Setup\n\n**Environment Configuration:**\n\n**OpenAI API Mode:**\nSet the following environment variables:\n```bash\nAPI_KEY=<Your OpenAI API Key>\nBASE_URL=<API Base URL>\n```\n\n**Ollama Mode:**\nSet the following environment variable:\n```bash\nUSE_OLLAMA=true\n```\n\n**Integration with AI Client, like Claude Desktop:**\nAdd the following configuration to your `claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"deepseek-thinker\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"deepseek-thinker-mcp\"\n      ],\n      \"env\": {\n        \"API_KEY\": \"<Your API Key>\",\n        \"BASE_URL\": \"<Your Base URL>\"\n      }\n    }\n  }\n}\n```\n\n**Using Ollama Mode:**\n```json\n{\n  \"mcpServers\": {\n    \"deepseek-thinker\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"deepseek-thinker-mcp\"\n      ],\n      \"env\": {\n        \"USE_OLLAMA\": \"true\"\n      }\n    }\n  }\n}\n```\n\n**Local Server Configuration:**\n\n```json\n{\n  \"mcpServers\": {\n    \"deepseek-thinker\": {\n      \"command\": \"node\",\n      \"args\": [\n        \"/your-path/deepseek-thinker-mcp/build/index.js\"\n      ],\n      \"env\": {\n        \"API_KEY\": \"<Your API Key>\",\n        \"BASE_URL\": \"<Your Base URL>\"\n      }\n    }\n  }\n}\n```\n\n**Development Setup:**\n\n```bash\n# Install dependencies\nnpm install\n\n# Build project\nnpm run build\n\n# Run service\nnode build/index.js\n```","tools":"## Available Tools\n\n\t\t1. Dual Mode Support (OpenAI API mode support and Ollama local mode support)\n\t\t2. Focused Reasoning (Captures Deepseek's thinking process and provides reasoning output)\n\t\t3. get-deepseek-thinker (Perform reasoning using the Deepseek model)","faq":null,"created_at":"2025-02-13T02:25:03+00:00","updated_at":"2025-03-26T16:09:32+00:00","source_url":"https://model-context-protocol.com/servers/deepseek-reasoning-mcp-server-for-ai","related_articles":[]}