MCP Reasoner

mcp-reasoner

Advanced reasoning tool with multiple strategies including Beam Search and Monte Carlo Tree Search

Input Schema

NameRequiredDescriptionDefault
nextThoughtNeededYesWhether another step is needed
strategyTypeNoReasoning strategy to use (beam_search or mcts)
thoughtYesCurrent reasoning step
thoughtNumberYesCurrent step number
totalThoughtsYesTotal expected steps

Input Schema (JSON Schema)

{ "properties": { "nextThoughtNeeded": { "description": "Whether another step is needed", "type": "boolean" }, "strategyType": { "description": "Reasoning strategy to use (beam_search or mcts)", "enum": [ "beam_search", "mcts" ], "type": "string" }, "thought": { "description": "Current reasoning step", "type": "string" }, "thoughtNumber": { "description": "Current step number", "minimum": 1, "type": "integer" }, "totalThoughts": { "description": "Total expected steps", "minimum": 1, "type": "integer" } }, "required": [ "thought", "thoughtNumber", "totalThoughts", "nextThoughtNeeded" ], "type": "object" }

You must be authenticated.

Other Tools