MCP Tools
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENAI_API_KEY | No | Your OpenAI API key for ChatGPT features | |
| MCP_TOOLS_MODEL | No | OpenAI model to use | gpt-5 |
| ANTHROPIC_API_KEY | No | Your Anthropic API key for Claude features | |
| MCP_TOOLS_DB_PATH | No | Database path for storing contexts and todos | ./data/contexts.db |
| MCP_TOOLS_CLAUDE_MODEL | No | Claude model to use | claude-sonnet-4-5-20250929 |
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": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ask_chatgptA | Ask ChatGPT a question about a context, or get a general second opinion |
| ask_geminiB | Ask Google Gemini a question about a context, or get a general second opinion |
| ask_deepseekB | Ask DeepSeek a question about a context, 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 |
|---|---|
No resources | |
TDQS
Scored across 3 tools
All three tools have nearly identical descriptions, only differing by the AI model name. An agent would struggle to choose between them without additional context on model preferences.
All tools follow a consistent 'ask_{model}' pattern, making naming predictable and clear.
Three tools is reasonable for a server that simply provides access to multiple AI models. It is slightly minimal but not out of place.
The tool set covers the core function of querying different AI models, but lacks features like conversation history, context management, or parameter customization, which are notable gaps.