reason_mcts
Solve complex problems or tasks by applying Monte Carlo Tree Search (MCTS) through the MCP Advanced Reasoning Server, enhancing decision-making and reasoning.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The problem or task to reason about using MCTS |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "The problem or task to reason about using MCTS",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}