- Home
- MCP servers
- Deep Reasoning
Deep Reasoning
- javascript
5
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"lakphy-deep-reasoning-mcp": {
"command": "npx",
"args": [
"-y",
"deep-reasoning-mcp@latest",
"--apiKey",
"<YOUR_OPENROUTER_API_KEY>",
"--model",
"<YOUR_MODEL>"
]
}
}
}You can run the Deep Reasoning MCP Server to empower MCP clients with deep reasoning capabilities based on the deepseek-r1 model. It exposes a Command-style MCP server that you can connect to from clients like Cursor, enabling advanced inference workflows through MCP.
How to use
Connect your MCP client to the Deep Reasoning MCP Server to start performing deep reasoning tasks. The server is exposed as a stdio MCP endpoint that you launch locally, and clients can initiate reasoning sessions by sending commands through MCP. Use the provided startup command to begin, and supply your model and API key when prompted.
How to install
Prerequisites: make sure you have Node.js and npm installed on your system.
-
Verify Node.js and npm are available on your system.
-
Run the MCP server startup command to launch the server locally.
-
Keep the terminal open to maintain the MCP server connection for your clients.
Additional notes
This server provides an MCP endpoint for deep reasoning tasks. When you run it, supply your OpenRouter API key and the model you want to use via the startup command. Treat <YOUR_OPENROUTER_API_KEY> and <YOUR_MODEL> as placeholders to be replaced with your actual credentials and model identifier.