Bayesian MCTS Model Context Protocol Server allowing Claude to control Ollama local models for Advanced MCTS and analysis.
MCTS MCP server exists for a simple reason — assistants are far more useful when they can act on MCTS directly instead of describing what you should do. Bayesian MCTS Model Context Protocol Server allowing Claude to control Ollama local models for Advanced MCTS and analysis.
A Model Context Protocol (MCP) server that exposes an Advanced Bayesian Monte Carlo Tree Search (MCTS) engine for AI-assisted analysis and reasoning.
This MCP server enables Claude to use Monte Carlo Tree Search (MCTS) algorithms for deep, explorative analysis of topics, questions, or text inputs. The MCTS algorithm uses a Bayesian approach to systematically explore different angles and interpretations, producing insightful analyses that evolve through multiple iterations.
Once MCTS is connected, these are the calls the assistant has available:
initialize_mcts — Start a new MCTS analysis with a specific question. Can optionally specify provider_name and model_name to override defaults for this runrun_mcts — Run the MCTS algorithm for a set number of iterations/simulationsgenerate_synthesis — Generate a final summary of the MCTS resultsget_config — View current MCTS configuration parameters, including active LLM provider and modelupdate_config — Update MCTS configuration parameters (excluding provider/model, use set_active_llm for that)get_mcts_status — Check the current status of the MCTS systemPrerequisites — The Prerequisites tool exposed by this servergoogle-genai on PyPI is all you need. Most clients run it directly, so configuration is a few lines and a restart.
You will need 4 environment variables: UV_PROJECT_ENVIRONMENT, OPENAI_API_KEY, ANTHROPIC_API_KEY, GEMINI_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCTS's toolset — initialize_mcts, run_mcts, generate_synthesis and 4 more — is a fair guide to whether it matches your workflow. It is maintained by angrysky56; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| initialize_mcts | Start a new MCTS analysis with a specific question. Can optionally specify provider_name and model_name to override defaults for this run. |
| run_mcts | Run the MCTS algorithm for a set number of iterations/simulations. |
| generate_synthesis | Generate a final summary of the MCTS results. |
| get_config | View current MCTS configuration parameters, including active LLM provider and model. |
| update_config | Update MCTS configuration parameters (excluding provider/model, use set_active_llm for that). |
| get_mcts_status | Check the current status of the MCTS system. |
| Prerequisites | The Prerequisites tool exposed by this server. |
{
"mcpServers": {
"mcts-mcp-server": {
"command": "uv",
"args": [
"--directory",
"/path/to/mcts-mcp-server/src",
"run",
"mcts-mcp-server"
],
"env": {
"UV_PROJECT_ENVIRONMENT": "/path/to/mcts-mcp-server"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| UV_PROJECT_ENVIRONMENT | Configuration value read at startup. | Optional |
| OPENAI_API_KEY | Credential the server authenticates with. | Yes |
| ANTHROPIC_API_KEY | Credential the server authenticates with. | Yes |
| GEMINI_API_KEY | Credential the server authenticates with. | Yes |
Build a programmable telecommunications stack for connecting telephony services with the Internet via a cloud-based utility.
Search built for AI, not humans — semantic web search that returns model-ready content, plus code context.
Answers, not links — delegate questions to Perplexity's search-grounded models and get cited responses back.
Give your assistant a voice — text-to-speech, voice cloning and audio tools from the ElevenLabs API.
Give your assistant a real code sandbox — isolated cloud VMs for actually running the code it writes.
The ML hub in your context window — search models, datasets, papers and run Spaces from the official server.