GPT Proxy MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HTTP_HOST | No | HTTP服务器主机,默认为0.0.0.0 | |
| HTTP_PORT | No | HTTP服务器端口,默认为3001 | |
| OPENAI_API_KEY | Yes | OpenAI API密钥 | |
| OPENAI_BASE_URL | No | API端点,默认为https://api.openai.com/v1 | |
| OPENAI_ORGANIZATION | No | OpenAI组织ID |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| gpt_chatB | Send a message to GPT and get a response |
| gpt_chat_streamA | Send a message to GPT and get a streaming response |
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 2 tools
The two tools are clearly distinct: one returns a complete response, the other streams. An agent can easily choose based on whether streaming is needed.
Both tools use a consistent 'gpt_chat_' prefix with an underscore, and the streaming variant is differentiated by '_stream'. Naming is predictable and clear.
With only 2 tools, the set is minimal. While it covers the core chat functionality, it feels slightly thin for a server named 'GPT Proxy' which might imply broader capabilities like model selection or configuration.
The tool surface is incomplete for a general GPT proxy: it lacks tools for listing models, setting system prompts, managing conversations, or adjusting parameters. Agents have no way to configure or extend interactions beyond basic chat.