Yggdrasil MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DISABLE_THOUGHT_LOGGING | No | Suppress stderr thought output | false |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| sequential_thinkingA | A detailed tool for dynamic and reflective problem-solving through thoughts. This tool helps analyze problems through a flexible thinking process that can adapt and evolve. Each thought can build on, question, or revise previous insights as understanding deepens. When to use this tool:
Key features:
Parameters explained:
You should:
|
| deep_planningA | A structured planning tool that manages multi-phase planning sessions. Complements sequential_thinking by tracking planning state while the LLM reasons deeply. Workflow: init → clarify → explore → evaluate → finalize
Each phase returns valid next phases to guide the workflow. Complex fields (pros, cons, steps, risks, constraints) are passed as JSON strings. Use sequential_thinking for deep reasoning between phases. Use deep_planning to record conclusions and track planning state. |
| list_plansA | List saved planning sessions and discovered plan files. Supports optional filters:
Returns paginated results sorted by date (newest first). |
| get_planA | Retrieve a saved deep_planning session by its session ID. Returns the plan in the requested format:
|
| promote_planA | Promote a Claude Code plan file to the Yggdrasil plans index. Renames the file to YYYYMMDD-{name}.md format and adds it to the index for unified discovery. Only works on .md files not already tracked in the index. |
| archive_plansA | Archive old planning sessions by moving files to archive/YYYY/ subdirectory. Default mode is dry run (preview only). Set dryRun to false to execute. Removes archived entries from the Yggdrasil index. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
deep_planning and sequential_thinking have overlapping purposes but descriptions clarify the distinction: sequential_thinking is for deep reasoning while deep_planning is for structured planning state tracking. The six tools are otherwise distinct (archive_plans, get_plan, promote_plan, list_plans are clearly separate).
Mostly consistent snake_case with verb_noun patterns (archive_plans, get_plan, list_plans, promote_plan). deep_planning and sequential_thinking deviate slightly as noun phrases, but remain readable and predictable.
Six tools is well-suited for a specialized planning server, covering planning workflow, reasoning, and plan file management without redundancy.
Core lifecycle is covered: planning, reasoning, listing, retrieving, promoting, and archiving. Minor gaps include no delete or export, but these are workable around with existing tools.