Three-model MCP server returning Grok, Gemini, and DeepSeek outputs for Claude.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-ivanantigravity-lgtm-model-council-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Three-model MCP server returning Grok, Gemini, and DeepSeek outputs for Claude.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
The official Python SDK for Model Context Protocol servers and clients
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for io.github.ivanantigravity-lgtm/model-council-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
mcp-name: io.github.ivanantigravity-lgtm/model-council-mcp-server
MCP сервер, который прогоняет одну и ту же задачу через 3 модели параллельно и возвращает Claude их короткие ответы. Claude сам сверху делает итоговую выжимку.
Два пресета:
china — Moonshot Kimi, Qwen, DeepSeekusa — Gemini, Grok, OpenAIПолезно, когда:
Не надо вызывать для:
Claude Desktop или Claude CodeuvPOLZA_AI_API_KEY — ключ берётся на polza.ai/dashboard/api-keysПоставить uv:
curl -LsSf https://astral.sh/uv/install.sh | sh
Создай .mcp.json в корне проекта:
{
"mcpServers": {
"model-council": {
"command": "uvx",
"args": ["model-council-mcp-server@latest"],
"env": {
"POLZA_AI_API_KEY": "your-polza-api-key-here"
}
}
}
}
Перезапусти Claude Code.
Файл ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"model-council": {
"command": "uvx",
"args": ["model-council-mcp-server@latest"],
"env": {
"POLZA_AI_API_KEY": "your-polza-api-key-here"
}
}
}
}
Файл: %APPDATA%\Claude\claude_desktop_config.json. Содержимое идентичное.
После перезапуска Claude попроси:
Прогони через model council (usa) задачу: стоит ли мне добавить подписку в мой продукт?
Claude должен вызвать tool tri_model_scan и вернуть 3 коротких ответа.
tri_model_scan — 3 модели отвечают на одну задачуtri_model_compare — сравнение нескольких вариантовtri_model_red_team — атака на идею, план или офферcouncil_model_guide — краткая памятка по сильным и слабым сторонам моделейУ каждого tool есть параметр preset (china или usa).
chinamoonshotai/kimi-k2.5qwen/qwen3.6-plusdeepseek/deepseek-v3.2usagoogle/gemini-3.1-flash-lite-previewx-ai/grok-4.1-fastopenai/gpt-5.4-nanoПроверить актуальность ID моделей можно через GET https://polza.ai/api/v1/models/catalog. Если какая-то модель у Polza переименована — подставь свой ID через переменные окружения ниже.
| Переменная | Обязательная | По умолчанию |
|---|---|---|
POLZA_AI_API_KEY | да | — |
POLZA_BASE_URL | нет | https://polza.ai/api/v1 |
COUNCIL_CHINA_MOONSHOT_MODEL | нет | moonshotai/kimi-k2.5 |
COUNCIL_CHINA_QWEN_MODEL | нет | qwen/qwen3.6-plus |
COUNCIL_CHINA_DEEPSEEK_MODEL | нет | deepseek/deepseek-v3.2 |
COUNCIL_USA_GEMINI_MODEL | нет | google/gemini-3.1-flash-lite-preview |
COUNCIL_USA_GROK_MODEL | нет | x-ai/grok-4.1-fast |
COUNCIL_USA_OPENAI_MODEL | нет | openai/gpt-5.4-nano |
LOG_LEVEL | нет | INFO |
Компактный JSON:
Сервер заставляет модели отвечать коротко, без воды и без повтора вопроса — чтобы не раздувать контекст Claude.
git clone https://github.com/ivanantigravity-lgtm/model-council-mcp-server.git
cd model-council-mcp-server
uv sync
POLZA_AI_API_KEY=your_key uv run python -m model_council_mcp_server.server
MIT.