Jatinkumar Parmar/mcp-reasoner
Built by Metorial, the integration platform for agentic AI.
Jatinkumar Parmar/mcp-reasoner
Server Summary
Systematic reasoning
Beam Search with configurable width
Monte Carlo Tree Search (MCTS)
Thought scoring and evaluation
Statistical analysis of reasoning process
A systematic reasoning MCP server implementation for Claude Desktop featuring both Beam Search and Monte Carlo Tree Search (MCTS) capabilities.
git clone https://github.com/Jacck/mcp-reasoner.git
cd mcp-reasoner
npm install
npm run build
Add to Claude Desktop config:
{
"mcpServers": {
"mcp-reasoner": {
"command": "node",
"args": ["path/to/mcp-reasoner/dist/index.js"],
}
}
}
Note: Monte Carlo Tree Search allowed Claude to perform really well on the Arc AGI benchmark (scored 6/10 on the public test), whereas beam search yielded a (3/10) on the same puzzles. For super complex tasks, you'd want to direct Claude to utilize the MCTS strategy over the beam search.
This project is licensed under the MIT License - see the LICENSE file for details.