converse
by FallDownTheSystem·★ 2·Score 38
MCP server enabling Claude to converse with multiple AI models through a unified interface.
Overview
Converse MCP Server is a comprehensive tool that bridges Claude with various AI models including OpenAI, Google, Anthropic, X.AI, Mistral, DeepSeek, and OpenRouter. It offers both individual model conversations and consensus features where multiple AI models can analyze the same question simultaneously. The server supports synchronous and asynchronous operations, with AI-powered summarization for better context management. Its robust tool set includes chat functionality, consensus gathering, job monitoring, and cancellation capabilities.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this when you need to compare responses across multiple AI providers or get consensus from several models on complex questions.
When NOT to choose this
Avoid this if you're concerned about API costs, as running multiple models simultaneously can be expensive, or if you need specialized features not offered by the supported providers.
Tools this server exposes
4 tools extracted from the READMEchatTalk to any AI model with support for files, images, and conversation history.
consensusGet multiple AI models to analyze the same question simultaneously.
check_statusMonitor the progress and retrieve results from asynchronous operations.
cancel_jobCancel running asynchronous operations when needed.
Comparable tools
Installation
Installation for Claude Code
claude mcp add converse \
-e OPENAI_API_KEY=your_key_here \
-e GEMINI_API_KEY=your_key_here \
-e XAI_API_KEY=your_key_here \
-e ANTHROPIC_API_KEY=your_key_here \
-e MISTRAL_API_KEY=your_key_here \
-e DEEPSEEK_API_KEY=your_key_here \
-e OPENROUTER_API_KEY=your_key_here \
-e ENABLE_RESPONSE_SUMMARIZATION=true \
-s user \
npx converse-mcp-serverInstallation for Claude Desktop
Add to your Claude Desktop configuration:
{
"mcpServers": {
"converse": {
"command": "npx",
"args": ["converse-mcp-server"],
"env": {
"OPENAI_API_KEY": "your_key_here",
"GEMINI_API_KEY": "your_key_here",
"XAI_API_KEY": "your_key_here",
"ANTHROPIC_API_KEY": "your_key_here",
"MISTRAL_API_KEY": "your_key_here",
"DEEPSEEK_API_KEY": "your_key_here",
"OPENROUTER_API_KEY": "your_key_here",
"ENABLE_RESPONSE_SUMMARIZATION": "true",
"SUMMARIZATION_MODEL": "gpt-5"
}
}
}
}FAQ
- Which AI providers are supported by the Converse MCP Server?
- The server supports multiple providers including OpenAI, Google/Gemini, X.AI, Anthropic, Mistral, DeepSeek, OpenRouter, and includes a Codex option that uses your ChatGPT login.
- How does the consensus tool work?
- The consensus tool allows multiple AI models to analyze the same question simultaneously, with each model able to see and respond to others' answers, creating a rich discussion with multiple perspectives.
Compare converse with
Last updated · Auto-generated from public README + GitHub signals.