Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Logging level for verbose output (e.g., DEBUG for detailed logs) | |
| REDIS_URL | No | Redis connection URL | redis://localhost:6379 |
| GEMINI_MODEL | No | The Gemini model to use for state merging. Available models: gemini-3-pro-preview (latest), gemini-2.5-pro (stable), gemini-2.5-flash (fast) | gemini-3-pro-preview |
| PROJECT_ROOT | No | The project root directory. Use ${workspaceFolder} to automatically resolve to your current project directory | |
| GEMINI_API_KEY | Yes | Your Google Gemini API key (required for AI-powered state merging). Get from https://aistudio.google.com/apikey | |
| ANTHROPIC_API_KEY | No | Your Anthropic API key (optional - used as fallback if Gemini fails). Get from https://console.anthropic.com/ |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| checkpoint | Save current context to Redis before running /clear. Merges new context with existing project state using LLM-based summarization. |
| resume | Load the last checkpoint at session start. Returns formatted context to inject into the conversation. |
| rollback | Revert to a previous checkpoint version. Useful if a merge produced incorrect results. |
| status | Show current state metadata including version, active files, tasks, token usage, and checkpoint history. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |