Tree of Thoughts MCP Server
Implements the Tree of Thoughts framework for structured reasoning and decision tree exploration, enabling LLMs to explore multiple reasoning paths, evaluate them, and backtrack.
README
🌳 Tree of Thoughts (ToT) MCP Server
Tree of Thoughts (ToT) is a powerful reasoning framework that enables AI models to explore multiple solution paths systematically. Think of it as a decision tree for thoughts—your AI can generate different approaches, evaluate them, backtrack when stuck, and focus on the most promising paths. Perfect for complex problem-solving, strategic planning, and multi-step reasoning tasks.
Whether you're solving puzzles, planning projects, or exploring creative alternatives, ToT provides structured exploration with evaluation scores, pruning strategies, and persistent storage for tracking reasoning over time.
✨ Features
- 🌲 Thought Trees - Create hierarchical thought structures with parent-child relationships
- 📊 Evaluation - Score thoughts to guide exploration toward promising paths
- ↩️ Backtracking - Mark thought branches as pruned and explore alternatives
- ✂️ Pruning - Automatically remove low-scoring branches
- 🏆 Best Path Selection - Identify and select the most promising thoughts
- 💾 Persistent Storage - Save and load thought trees across sessions with atomic writes and error handling
- 📈 Statistics - Track tree metrics (depth, evaluations, pruning rates)
- 🔍 Branching Strategies - Systematic exploration using BFS, DFS, beam search, and best-first search
- 🤖 LLM Integration - Optional LLM provider for automated thought generation with strict mode support
- 🛡️ Robust Traversal - Iterative implementations for handling very deep trees without recursion limits
- ✅ Schema Validation - Input validation for all tool parameters
🚀 Installation
npm install
npm run build
⚙️ Configuration
Add to your MCP client configuration (e.g., mcp.json):
{
"mcpServers": {
"tot": {
"command": "node",
"args": ["/path/to/ToT-mcp/dist/index.js"],
"env": {
"TOT_STORAGE_PATH": "/path/to/ToT-mcp/tot-storage.json",
"TOT_OUTPUT_DIR": "/path/to/ToT-mcp/output"
}
}
}
}
🎯 Quick Start
Basic Example
Create a tree to solve a problem:
{
"goal": "Solve the 24 game with numbers [3, 8, 8, 8]",
"rootContent": "Start with the numbers 3, 8, 8, 8",
"maxDepth": 5
}
Add child thoughts with different approaches:
{
"treeId": "tree-123",
"parentId": "thought-456",
"content": "Try multiplying 8 * 8 = 64, then 64 / 8 = 8, then 8 * 3 = 24"
}
Evaluate thoughts to guide exploration:
{
"treeId": "tree-123",
"thoughtId": "thought-789",
"score": 0.95,
"reasoning": "This approach successfully reaches the target of 24"
}
LLM Provider Configuration
The server supports optional LLM integration for automated thought generation. To configure an LLM provider, modify the server instantiation in src/index.ts:
const llmProvider = {
generateThoughts: async (prompt: string, count: number, context?: string): Promise<string[]> => {
// Your LLM implementation here
return Array.from({ length: count }, (_, i) => `Generated thought ${i + 1}`);
}
};
const config = {
llmProvider,
strictLLM: false // Set to true to throw errors when LLM is not configured
};
const server = new ToTMCPServer(config);
Strict Mode: When strictLLM is set to true, the server will throw an error if generate_children is called without an LLM provider configured. This prevents accidental use of placeholder thoughts in production environments.
Using with LLM Providers
The ToT service includes example LLM provider implementations in the examples/llm-providers/ directory:
Mock LLM Provider - A simple mock implementation for testing:
import { MockLLMProvider } from './examples/llm-providers/mock-llm-provider.js';
const llmProvider = new MockLLMProvider([
'Consider exploring the most promising path first',
'Try a different approach by breaking down the problem',
'Evaluate the trade-offs between different solutions'
]);
const config = { llmProvider, strictLLM: false };
const service = new ToTService('./tot-storage.json', config);
Grok LLM Provider - Example implementation using xAI's Grok API (commented by default):
import { GrokLLMProvider } from './examples/llm-providers/grok-llm-provider.js';
const apiKey = process.env.GROK_API_KEY;
const llmProvider = new GrokLLMProvider(apiKey);
const config = { llmProvider, strictLLM: true };
const service = new ToTService('./tot-storage.json', config);
See examples/llm-providers/grok-llm-provider.ts for the full implementation. Remember to never hardcode API keys - use environment variables or secure configuration management.
Generate and Evaluate in One Step
The generateChildrenAndEvaluate method combines thought generation with automatic evaluation:
// Generate children with a default score of 50
const children = await service.generateChildrenAndEvaluate({
treeId: 'tree-123',
parentId: 'thought-456',
numChildren: 3
}, 50);
// Generate children and use LLM as judge for evaluation
const childrenWithJudge = await service.generateChildrenAndEvaluate({
treeId: 'tree-123',
parentId: 'thought-456',
numChildren: 3
}, undefined, true);
This method requires an LLM provider to be configured.
🛠️ Available Tools
Tree Management
create_tree
Create a new Tree of Thoughts with a root thought and goal.
Parameters:
goal(string, required): The goal or problem this tree is solvingrootContent(string, required): The content of the root thoughtmaxDepth(number, optional): Maximum depth of the tree (default: 10)metadata(object, optional): Optional metadata for the tree
get_tree
Get a tree by ID.
Parameters:
treeId(string, required): The ID of the tree to retrieve
list_trees
List all trees.
delete_tree
Delete a tree by ID.
Parameters:
treeId(string, required): The ID of the tree to delete
Thought Operations
add_child
Add a child thought to an existing thought.
Parameters:
treeId(string, required): The ID of the treeparentId(string, required): The ID of the parent thoughtcontent(string, required): The content of the child thoughtmetadata(object, optional): Optional metadata for the thought
evaluate_thought
Evaluate a thought with a score.
Parameters:
treeId(string, required): The ID of the treethoughtId(string, required): The ID of the thought to evaluatescore(number, required): The evaluation score (e.g., 0-1 or 0-100)reasoning(string, optional): Optional reasoning for the evaluation
select_thought
Mark a thought as selected for further exploration.
Parameters:
treeId(string, required): The ID of the treethoughtId(string, required): The ID of the thought to select
backtrack
Backtrack from a thought, marking all descendants as pruned.
Parameters:
treeId(string, required): The ID of the treethoughtId(string, required): The ID of the thought to backtrack from
prune_tree
Prune thoughts below a certain evaluation threshold.
Parameters:
treeId(string, required): The ID of the treethreshold(number, required): The evaluation threshold (thoughts below this will be pruned)
Query Operations
get_thought
Get a specific thought by ID.
Parameters:
treeId(string, required): The ID of the treethoughtId(string, required): The ID of the thought to retrieve
get_tree_structure
Get the hierarchical structure of a tree.
Parameters:
treeId(string, required): The ID of the tree
get_best_thoughts
Get the best evaluated thoughts in a tree.
Parameters:
treeId(string, required): The ID of the treelimit(number, optional): Maximum number of thoughts to return (default: 5)
get_tree_stats
Get statistics about a tree.
Parameters:
treeId(string, required): The ID of the tree
Returns:
totalThoughts: Total number of thoughts in the treeevaluatedThoughts: Number of evaluated thoughtsselectedThoughts: Number of selected thoughtsprunedThoughts: Number of pruned thoughtsmaxDepthReached: Maximum depth reached in the treeaverageEvaluation: Average evaluation score
System Operations
clear_all
Clear all trees.
save_state
Manually save the current state to storage.
get_version
Get the version information of this ToT MCP server.
explore_with_strategy
Explore a thought tree using a systematic branching strategy.
Parameters:
treeId(string, required): The ID of the tree to explorestrategy(string, required): The branching strategy to use (bfs,dfs,beam, orbest_first)maxThoughts(number, optional): Maximum number of thoughts to explore (default: 100)beamWidth(number, optional): Beam width for beam search strategy (default: 3)stopCriteria(object, optional): Optional stop criteriaminEvaluation(number): Stop when a thought reaches this evaluation scoremaxDepth(number): Stop when reaching this depthtargetThoughtCount(number): Stop when exploring this many thoughts
Returns:
thoughtsExplored: Number of thoughts exploredthoughtsCreated: Number of thoughts created during explorationmaxDepthReached: Maximum depth reachedbestThoughtId: ID of the best thought foundbestEvaluation: Evaluation score of the best thoughtstoppedReason: Reason why exploration stopped
📖 Usage Example
Here's a typical workflow for solving a problem using ToT:
- Create a tree with your goal and initial thought
- Add child thoughts representing different approaches
- Evaluate each thought based on its promise
- Select the best thoughts for further exploration
- Add more children to selected thoughts
- Backtrack if a path doesn't work out
- Prune low-scoring branches to focus resources
- Review the tree structure to understand the reasoning path
📊 Data Structures
Thought
{
id: string;
content: string;
parentId: string | null;
children: string[];
evaluation: number | null;
state: 'pending' | 'evaluated' | 'selected' | 'pruned';
depth: number;
createdAt: string;
metadata?: Record<string, any>;
}
Tree
{
id: string;
rootId: string;
thoughts: Map<string, Thought>;
goal: string;
createdAt: string;
updatedAt: string;
maxDepth: number;
metadata?: Record<string, any>;
}
💾 Storage
Thought trees are persisted to tot-storage.json in JSON format. The storage mechanism uses:
- Atomic Writes: Data is written to a temporary file first, then renamed to prevent corruption
- Error Handling: Graceful recovery from corrupt files with detailed error messages
- Schema Validation: Loaded data is validated to ensure structural integrity
- Graceful Degradation: Corrupt or missing files result in an empty state rather than crashes
Logs of tool calls are stored in the output directory with daily rotation.
📄 License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。