MCP Catalogs
Home

converse

by FallDownTheSystem·2·Score 38

MCP server enabling Claude to converse with multiple AI models through a unified interface.

ai-llmdeveloper-toolsproductivity
0
Forks
1
Open issues
this month
Last commit
2d ago
Indexed

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:

you:Cross-validation of AI responses by getting multiple models to analyze the same query
you:Agentic coding assistance with access to various specialized AI models
you:Long-running analysis tasks with background processing and status monitoring
you:Which AI providers are supported by the Converse MCP Server?
you:How does the consensus tool work?

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 README
  • chat

    Talk to any AI model with support for files, images, and conversation history.

  • consensus

    Get multiple AI models to analyze the same question simultaneously.

  • check_status

    Monitor the progress and retrieve results from asynchronous operations.

  • cancel_job

    Cancel running asynchronous operations when needed.

Comparable tools

model-switcher-mcpmulti-agent-mcpllm-chain-mcpollama-mcp

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-server

Installation 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.