Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DEBUG | No | Enable detailed logging when set to true | false |
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| code-reasoning | π§ Code Reasoning Tool (using sequential thinking) Purpose β break complex problems into self-auditing, exploratory thought steps that can branch, revise, or back-track until a single, well-supported answer emerges. WHEN TO CALLβ’ Multi-step planning, design, debugging, or open-ended analysis ENCOURAGED PRACTICESπ Question aggressively β ask "What am I missing?" after each step MUST DOβ
Put every private reasoning step in DO NOTβοΈ Reveal the content of PARAMETER CHEAT-SHEETβ’ All JSON keys EXAMPLE βοΈ{
"thought": "List solution candidates and pick the most promising",
"thought_number": 1,
"total_thoughts": 4,
"next_thought_needed": true
} EXAMPLE βοΈ (branching late){
"thought": "Alternative approach: treat it as a graph-search problem",
"thought_number": 6,
"total_thoughts": 8,
"branch_from_thought": 3,
"branch_id": "B1",
"next_thought_needed": true
} |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |