ee93c70d31a1611d0db9ac4f93592d6e15a98be2source_git · jacck/mcp-reasoner · current release
Observed 2026-08-25T08:26:01.938Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2024-11-05.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
mcp-reasonerAdvanced reasoning tool with multiple strategies including Beam Search and Monte Carlo Tree SearchInput schema{
"type": "object",
"properties": {
"thought": {
"type": "string",
"description": "Current reasoning step"
},
"thoughtNumber": {
"type": "integer",
"description": "Current step number",
"minimum": 1
},
"totalThoughts": {
"type": "integer",
"description": "Total expected steps",
"minimum": 1
},
"nextThoughtNeeded": {
"type": "boolean",
"description": "Whether another step is needed"
},
"strategyType": {
"type": "string",
"enum": [
"beam_search",
"mcts",
"mcts_002_alpha",
"mcts_002_alt_alpha"
],
"description": "Reasoning strategy to use (beam_search or mcts)"
},
"beamWidth": {
"type": "integer",
"description": "Number of top paths to maintain (n-sampling). Defaults to 3 if not specified",
"minimum": 1,
"maximum": 10
},
"numSimulations": {
"type": "integer",
"description": "Number of MCTS simulations to run. Defaults to 50 if not specified",
"minimum": 1,
"maximum": 150
}
},
"required": [
"thought",
"thoughtNumber",
"totalThoughts",
"nextThoughtNeeded"
]
} | — | — · — | — |