MCP server for access to OpenAI's ChatGPT API with Responses API for conversation management
This MCP server allows you to access OpenAI's ChatGPT API directly from Claude Desktop.
📝 Read about why I built this project: I Built an AI That Talks to Other AIs: Demystifying the MCP Hype
To install ChatGPT Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @billster45/mcp-chatgpt-responses --client claude
Clone this repository:
git clone https://github.com/billster45/mcp-chatgpt-responses.git
cd mcp-chatgpt-responses
Set up a virtual environment and install dependencies using uv:
uv venv
.venv\\Scripts\\activate
uv pip install -r requirements.txt
Configure Claude Desktop to use this MCP server by following the instructions at: MCP Quickstart Guide
Add the following configuration to your Claude Desktop config file (adjust paths as needed):
{
"mcpServers": {
"chatgpt": {
"command": "uv",
"args": [
"--directory",
"\\path\\to\\mcp-chatgpt-responses",
"run",
"chatgpt_server.py"
],
"env": {
"OPENAI_API_KEY": "your-api-key-here",
"DEFAULT_MODEL": "gpt-4o",
"DEFAULT_TEMPERATURE": "0.7",
"MAX_TOKENS": "1000"
}
}
}
}
Restart Claude Desktop.
You can now use the ChatGPT API through Claude by asking questions that mention ChatGPT or that Claude might not be able to answer.
The MCP server provides the following tools:
ask_chatgpt(prompt, model, temperature, max_output_tokens, response_id)
- Send a prompt to ChatGPT and get a response
ask_chatgpt_with_web_search(prompt, model, temperature, max_output_tokens, response_id)
- Send a prompt to ChatGPT with web search enabled to get up-to-date information
Tell Claude to ask ChatGPT a question!
Use the ask_chatgpt tool to answer: What is the best way to learn Python?
Tell Claude to have a conversation with ChatGPT:
Use the ask_chatgpt tool to have a two way conversation between you and ChatGPT about the topic that is most important to you.
Note how in a turn taking conversation the response id allows ChatGPT to store the history of the conversation so its a genuine conversation and not just as series of API calls. This is called conversation state.
For questions that may benefit from up-to-date information:
Use the ask_chatgpt_with_web_search tool to answer: What are the latest developments in quantum computing?
Now try web search in agentic way to plan your perfect day out based on the weather!
Use the ask_chatgpt_with_web_search tool to find the weather tomorrow in New York, then based on that weather and what it returns, keep using the tool to build up a great day out for someone who loves food and parks
This tool utilizes OpenAI's Responses API, which automatically maintains conversation state on OpenAI's servers. This approach:
MIT License