This is a very basic implementation of an Mcp-Reasoning-Server for Cursor AI .
{
"mcpServers": {
"mcp-reasoning-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides advanced reasoning capabilities for Claude in Cursor AI.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 385 days ago. 12 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Mcp Reasoning Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Notable Mentions :
https://github.com/Jacck/mcp-reasoner
Thanks for giving me the idea Jacck .
A Model Context Protocol (MCP) server that provides advanced reasoning capabilities for Claude in Cursor AI.
npm install
npm run build
Build the server first:
cd mcp-reasoning-server
npm run build
Open Cursor AI
Navigate to Settings > Features > MCP
Click the "+ Add new global MCP server" button
Enter the following details:
node C:\\Users\\[YourUsername]\\path\\to\\mcp-reasoning-server\\dist\\index.jsClick "Add"
Find your server in the list (it will initially show as "Disabled")
Click "Disabled" to toggle it to "Enabled"
Click the refresh button to load the available tools
A command prompt window will open automatically - this is your server running
As long as this command prompt window remains open, the reasoning tools will be available
Alternatively, you can manually edit your Cursor MCP configuration file at C:\Users\[Username]\.cursor\mcp.json (Windows):
{
"mcpServers": {
"mcp-reasoner": {
"command": "node",
"args": ["C:\\Users\\[Username]\\path\\to\\mcp-reasoning-server\\dist\\index.js"]
}
}
}
npm run build before restartingYou can use the reasoning tools directly in your Cursor AI conversations with Claude:
Use the /reason-mcts command followed by your query to start a MCTS-based reasoning chain:
/reason-mcts How can I optimize the performance of this React component?
Use the /reason-beam command for beam search-based reasoning:
/reason-beam What architecture would be best for this microservice system?
Use the /reason-r1 command for single-step Transformer-based reasoning:
/reason-r1 Analyze the complexity of this algorithm.
Use the /reason-hybrid command to combine Transformer and MCTS reasoning:
/reason-hybrid How should we approach refactoring this legacy codebase?
To make it easier for Claude to work with these reasoning tools, you can add the following custom instructions:
When I use commands like /reason-mcts, /reason-beam, /reason-r1, or /reason-hybrid in chat, interpret them as requests to use the corresponding reasoning tools:
/reason-mcts: Use the reason_mcts tool with the text following the command as the query
Example: "/reason-mcts How do I solve this problem?" should call the reason_mcts tool
/reason-beam: Use the reason_beam tool with the text following the command as the query
Example: "/reason-beam What's the best approach for this complex problem?" should call the reason_beam tool
/reason-r1: Use the reason_r1 tool with the text following the command as the query
Example: "/reason-r1 Analyze this code for performance issues" should call t
... [View full README on GitHub](https://github.com/AzDeltaQQ/Mcp-Reasoning-Server#readme)