Analysis updated 2026-05-18
Hand off a coding task to Codex CLI in the background while you keep working in Claude Code.
Ask the same question to GPT, DeepSeek, Kimi, and Qwen at once to compare their answers.
Run a health check to see which configured models are currently available.
Have a multi-turn conversation with a single model while preserving context.
| mai-yyy/multi-llm-mcp | autolearnmem/automem | billy-ellis/exr-imageio-poc | |
|---|---|---|---|
| Stars | 32 | 32 | 32 |
| Language | Python | Python | Python |
| Setup difficulty | moderate | hard | moderate |
| Complexity | 3/5 | 5/5 | 3/5 |
| Audience | developer | researcher | researcher |
Figures from each repo's GitHub metadata at analysis time.
Each AI provider needs its own API key set as an environment variable.
This is a plugin (called an MCP server) for Claude Code that adds two main capabilities. The README is written in Chinese. First, it lets Claude Code hand off coding tasks to OpenAI's Codex CLI, which is a separate AI coding agent. Second, it lets Claude Code send the same question to multiple AI models at once, such as GPT, DeepSeek, Kimi, and Qwen, so you can compare their answers side by side. The Codex integration works by running Codex as a background job. Because some coding tasks take a while to complete and MCP tool calls have a timeout limit, the plugin returns a job ID immediately and then provides a separate tool you call later to retrieve the result when it is ready. Codex can be run in three permission levels: read-only for browsing and analyzing code, workspace-write for making file changes, and a higher-access mode the documentation advises against using casually. The multi-model feature works similarly. You can ask a single model a question in a conversational session that preserves context across multiple turns, or you can broadcast the same question to several models simultaneously and get all their responses back. Long-running multi-model requests also use the job ID pattern to avoid timeout problems. A health check tool lets you verify which models are configured and available without exposing any API keys. Each AI provider needs its own API key set as an environment variable. The plugin connects to DeepSeek, Kimi (Moonshot), Qwen (via DashScope), OpenAI, and optionally Claude via Anthropic's API. It is built on the FastMCP framework, has no other dependencies beyond the OpenAI Python SDK, and is installed by registering the Python script as an MCP server in Claude Code's configuration. The license is MIT.
An MCP server for Claude Code that hands off coding tasks to OpenAI's Codex CLI and lets you broadcast the same question to multiple AI models at once.
Mainly Python. The stack also includes Python, FastMCP, OpenAI SDK.
Use freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.