Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GOOGLE_API_KEY | No | Your Google API key for Gemini features | |
| OPENAI_API_KEY | No | Your OpenAI API key for ChatGPT features | |
| MCP_TOOLZ_MODEL | No | OpenAI model to use | gpt-5 |
| DEEPSEEK_API_KEY | No | Your DeepSeek API key for DeepSeek features | |
| ANTHROPIC_API_KEY | No | Your Anthropic API key for Claude features | |
| MCP_TOOLZ_DB_PATH | No | Shared database location | ~/.mcp-toolz/contexts.db |
| MCP_TOOLZ_CLAUDE_MODEL | No | Claude model to use | claude-sonnet-4-5-20250929 |
| MCP_TOOLZ_GEMINI_MODEL | No | Gemini model to use | gemini-2.0-flash-thinking-exp-01-21 |
| MCP_TOOLZ_DEEPSEEK_MODEL | No | DeepSeek model to use | deepseek-chat |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| context_search | Search Claude Code contexts by query string or tags |
| context_get | Get full details of a specific context by ID |
| context_list | List recent Claude Code contexts |
| context_delete | Delete a specific context by ID |
| context_save | Save a new context entry for the current project |
| todo_search | Search todo snapshots by content or context description |
| todo_get | Get full details of a specific todo snapshot by ID |
| todo_list | List recent todo snapshots |
| todo_save | Save a new todo snapshot |
| todo_restore | Get todo snapshot for restoring (active snapshot or specific ID) |
| todo_delete | Delete a specific todo snapshot by ID |
| ask_chatgpt | Ask ChatGPT a question about a context entry, or get a general second opinion |
| ask_claude | Ask Claude a question about a context entry, or get a general second opinion |
| ask_gemini | Ask Google Gemini a question about a context entry, or get a general second opinion |
| ask_deepseek | Ask DeepSeek a question about a context entry, or get a general second opinion |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Recent Project Contexts | Recent contexts for current project |
| Project Sessions | List of recent Claude Code sessions for current project |
| Recent Todo Snapshots | Last 20 todo snapshots across all projects |
| Active Todo Snapshot | Active todo snapshot for current project |