chatgpt-interlocutor
Allows sending prompts to ChatGPT using OpenAI models (gpt-4o-mini, gpt-4o, o3-mini) for second opinions, alternative approaches, and structured comparison with Claude's output.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@chatgpt-interlocutorask ChatGPT for a second opinion on my Python sorting code"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
chatgpt-interlocutor
An MCP server that gives Claude Code a ChatGPT second opinion. Cross-model adversarial review without leaving your terminal.
Why
When you're working in Claude Code, sometimes you want a second perspective — a different model's take on the same problem. Not because one is better, but because disagreement surfaces blind spots.
This server adds two tools to every Claude Code session:
ask_chatgpt— Send a question to ChatGPT and get its response inline. Second opinions, alternative approaches, sanity checks.compare_approaches— Send the same prompt to both models and get a structured comparison. Specificity, depth, accuracy, voice.
Related MCP server: multi-ai-collab
Install
Prerequisites
You need an OpenAI API key.
Add to Claude Code
Add this to your ~/.claude.json under mcpServers:
{
"mcpServers": {
"chatgpt-interlocutor": {
"command": "npx",
"args": ["-y", "chatgpt-interlocutor"],
"env": {
"OPENAI_API_KEY": "sk-your-key-here"
}
}
}
}Restart Claude Code. You should see ask_chatgpt and compare_approaches in your available tools.
Or install globally
npm install -g chatgpt-interlocutorThen configure with the direct path:
{
"mcpServers": {
"chatgpt-interlocutor": {
"command": "chatgpt-interlocutor",
"env": {
"OPENAI_API_KEY": "sk-your-key-here"
}
}
}
}Tools
ask_chatgpt
Get a second opinion from ChatGPT.
Parameter | Type | Default | Description |
| string | required | The question or task to send |
| string |
|
|
| string | — | Optional system prompt for context |
| number |
| Creativity 0–2. Lower = more focused |
compare_approaches
Benchmark Claude's output against ChatGPT's on the same task.
Parameter | Type | Default | Description |
| string | required | What both models are being asked to do |
| string | required | The prompt to send to ChatGPT |
| string | — | Claude's output for side-by-side comparison |
| string |
| Which ChatGPT model to use |
When your_output is provided, the response includes a comparison framework:
Specificity — Which is more concrete and actionable?
Depth — Which goes deeper into the problem?
Voice — Which sounds more human / less generic AI?
Structure — Which is better organized?
Accuracy — Which is more correct?
Differentiation — Where do they diverge most?
Models
Model | Cost | Best for |
| Cheapest | Quick second opinions, brainstorming |
| Mid | Deeper analysis, complex reasoning |
| Mid | Math, logic, structured reasoning |
How it works
This is a Model Context Protocol server that runs over stdio. Claude Code launches it as a subprocess, sends tool calls, and gets responses back. Your prompts go to the OpenAI API using your own key — nothing is stored or proxied.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Share context and questions between Claude instances — VS Code, claude.ai web, and mobile.
Stop copy-pasting between Claude Chat and Claude Code.
Use AI models for chat, image, and video generation from Claude Code and other MCP hosts.
- BleepOAuthcom.usebleep
Create Tasks and run Workflows in Bleep from Claude, ChatGPT, and other AI assistants.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables Claude Code to consult Gemini for complex coding problems with session management, file attachments, and conversation persistence.105MIT
- AlicenseNot gradedqualityDmaintenanceLets Claude Code query multiple AI models (Gemini, Grok, ChatGPT, DeepSeek) for diverse perspectives, code reviews, debates, and more.MIT

LLM Council MCPofficial
AlicenseNot gradedqualityDmaintenanceEnables Claude Code to consult external LLMs (GPT, Gemini) through multi-turn sessions for second opinions, parallel consultations, and web-grounded research.MIT- FlicenseNot gradedqualityDmaintenanceEnables Claude to query other LLMs like ChatGPT, Perplexity, and Gemini for verification and comparison, eliminating manual copy-pasting.-