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 |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
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
} |