Execute Monte Carlo Tree Search (MCTS-LLM) to solve complex problems through iterative exploration, simulation, and learning. Use this for research questions, planning tasks, and coding challenges that benefit from systematic exploration of solution spaces.
You are executing the MCTS-LLM algorithm to solve the user's request through systematic exploration.
MCTS-LLM combines Monte Carlo Tree Search with LLM capabilities:
For the request: $ARGUMENTS
Use the MCP tool mcts_init_tree to initialize the search tree.
Execute the four MCTS phases in order:
Use /mcts:mcts-select skill or mcts_select MCP tool to:
Use /mcts:mcts-expand skill or mcts_expand MCP tool to:
Use /mcts:mcts-simulate skill or mcts_simulate MCP tool to:
Use /mcts:mcts-backpropagate skill or mcts_backpropagate MCP tool to:
After sufficient iterations:
mcts_get_best_path to extract the best solution pathThroughout the search:
mcts_add_observation to record what you learnmcts_update_belief to update probability estimatesmcts_get_beliefs to check current understandingAccess reusable prompts with:
mcts_dataset_list - View available promptsmcts_dataset_get - Retrieve a specific prompt/mcts:mcts-dataset for full CRUD operationsNow execute MCTS for the given problem, using the appropriate MCP tools and skills.