io.github.polydev-ai/polydev

AI 与智能体

by polydev-ai

通过一个 MCP server 同时查询 GPT-5、Claude、Gemini 和 Grok,统一访问多模型能力。

什么是 io.github.polydev-ai/polydev

通过一个 MCP server 同时查询 GPT-5、Claude、Gemini 和 Grok,统一访问多模型能力。

README

Polydev

<p align="center"> <img src="https://raw.githubusercontent.com/polydev-ai/polydev/main/public/logo.png" alt="Polydev Logo" width="120" /> </p> <p align="center"> <strong>Multi-model AI perspectives for your coding agents</strong><br> Query GPT-5, Claude, Gemini, and Grok simultaneously through one MCP server </p> <p align="center"> <a href="https://www.npmjs.com/package/polydev-ai"><img src="https://img.shields.io/npm/v/polydev-ai.svg" alt="npm version"></a> <a href="https://polydev.ai/articles/swe-bench-paper"><img src="https://img.shields.io/badge/SWE--bench-74.6%25-brightgreen" alt="SWE-bench Verified"></a> <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT"></a> </p>

🚀 One-Command Install

Claude Code

sh
claude mcp add polydev -- npx -y polydev-ai@latest

Cursor / Windsurf / Cline

sh
npx polydev-ai@latest

OpenAI Codex CLI

sh
npx polydev-ai@latest

Get your token at polydev.ai/dashboard/mcp-tokens


Why Polydev?

Stop copy-pasting between ChatGPT, Claude, and Gemini. Get all their perspectives in your IDE with one request.

MetricResult
SWE-bench Verified74.6% Resolve@2
Cost vs Claude Opus62% lower
Response time10-40 seconds

"Different models have different blind spots. Combining their perspectives eliminates yours."


How It Works

code
Your Agent → Polydev MCP → [GPT-5, Claude, Gemini, Grok] → Synthesized Answer

When your AI agent gets stuck, Polydev consults multiple frontier models simultaneously and returns their combined perspectives. One request, four expert opinions.


Quick Start

Option 1: Use Hosted Service (Recommended)

Get started instantly at polydev.ai

Step 1: Install the MCP server

sh
npx polydev-ai@latest

Step 2: Set your token (get it from polydev.ai/dashboard/mcp-tokens)

sh
export POLYDEV_USER_TOKEN="pd_your_token_here"

Option 2: Self-Host with Your Own API Keys

Step 1: Clone and install

sh
git clone https://github.com/polydev-ai/polydev.git
sh
cd polydev && npm install

Step 2: Configure environment

sh
cp .env.example .env.local

Step 3: Add your API keys to .env.local and run

sh
npm run dev

IDE Configuration

Claude Code

One command:

sh
claude mcp add polydev -- npx -y polydev-ai@latest

Or add to ~/.claude.json:

json
{
  "mcpServers": {
    "polydev": {
      "command": "npx",
      "args": ["-y", "polydev-ai@latest"],
      "env": {
        "POLYDEV_USER_TOKEN": "pd_your_token_here"
      }
    }
  }
}

Cursor / Windsurf / Cline

Add to your MCP config (usually ~/.cursor/mcp.json or similar):

json
{
  "mcpServers": {
    "polydev": {
      "command": "npx",
      "args": ["-y", "polydev-ai@latest"],
      "env": {
        "POLYDEV_USER_TOKEN": "pd_your_token_here"
      }
    }
  }
}

OpenAI Codex CLI

Add to ~/.codex/config.toml:

toml
[mcp_servers.polydev]
command = "npx"
args = ["-y", "polydev-ai@latest"]

[mcp_servers.polydev.env]
POLYDEV_USER_TOKEN = "pd_your_token_here"

[mcp_servers.polydev.timeouts]
tool_timeout = 180
session_timeout = 600

Usage

Once connected, your agent can call:

json
{
  "tool": "get_perspectives",
  "arguments": {
    "prompt": "How should I refactor this authentication flow?"
  }
}

Or just mention "polydev" or "perspectives" in your prompt:

code
"Use polydev to debug this infinite loop"
"Get perspectives on: Should I use Redis or PostgreSQL for caching?"

Use Your Existing CLI Subscriptions

Already paying for ChatGPT Plus, Claude Pro, or Gemini Advanced? Use those subscriptions directly through your CLI tools.

SubscriptionCLI ToolSetup
Claude Pro ($20/mo)Claude Codeclaude login
ChatGPT Plus ($20/mo)Codex CLIcodex login
Gemini Advanced ($20/mo)Gemini CLIgemini login

Polydev can route requests through your authenticated CLI sessions — your subscription quota is used, no extra API costs.


Self-Hosting

Requirements

  • Node.js 18+
  • PostgreSQL (or Supabase)
  • API keys for the models you want to use

Environment Variables

Create a .env.local file:

sh
# Database
NEXT_PUBLIC_SUPABASE_URL=your_supabase_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_anon_key
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key

# AI Providers (add the ones you want)
OPENAI_API_KEY=sk-...
ANTHROPIC_API_KEY=sk-ant-...
GOOGLE_API_KEY=...
XAI_API_KEY=...

Database Setup

sh
cd supabase && supabase db push

Run

sh
npm run dev

Research

Our approach achieves 74.6% on SWE-bench Verified (Resolve@2), matching Claude Opus at 62% lower cost.

ApproachResolution RateCost/Instance
Claude Haiku (baseline)64.6%$0.18
+ Polydev consultation66.6%$0.24
Resolve@2 (best of both)74.6%$0.37
Claude Opus (reference)74.4%$0.97

Read the full paper →


Project Structure

code
polydev/
├── src/                    # Next.js application
│   ├── app/               # App router pages & API routes
│   ├── components/        # React components
│   ├── hooks/             # Custom React hooks
│   └── lib/               # Utilities and services
├── mcp/                   # MCP server implementation
├── supabase/              # Database migrations
├── docs/                  # Documentation
└── public/                # Static assets

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting PRs.

sh
# Fork the repository, then:
git clone https://github.com/YOUR_USERNAME/polydev.git
sh
cd polydev && npm install
sh
git checkout -b feature/amazing-feature
sh
git commit -m 'Add amazing feature'
sh
git push origin feature/amazing-feature

Then open a Pull Request.


Links


License

MIT License - see LICENSE for details.


<p align="center"> <b>Built by <a href="https://polydev.ai">Polydev AI</a></b><br> <sub>Multi-model consultation for better code</sub> </p>

常见问题

io.github.polydev-ai/polydev 是什么?

通过一个 MCP server 同时查询 GPT-5、Claude、Gemini 和 Grok,统一访问多模型能力。

相关 Skills

Claude接口

by anthropics

Universal
热门

面向接入 Claude API、Anthropic SDK 或 Agent SDK 的开发场景,自动识别项目语言并给出对应示例与默认配置,快速搭建 LLM 应用。

想把Claude能力接进应用或智能体,用claude-api上手快、兼容Anthropic与Agent SDK,集成路径清晰又省心

AI 与智能体
未扫描123.0k

智能体流程设计

by alirezarezvani

Universal
热门

面向生产级多 Agent 编排,梳理顺序、并行、分层、事件驱动、共识五种工作流设计,覆盖 handoff、状态管理、容错重试、上下文预算与成本优化,适合搭建复杂 AI 协作系统。

帮你把多智能体流程设计、编排和自动化统一起来,复杂工作流也能更稳地落地,适合追求强控制力的团队。

AI 与智能体
未扫描12.5k

提示工程专家

by alirezarezvani

Universal
热门

覆盖Prompt优化、Few-shot设计、结构化输出、RAG评测与Agent工作流编排,适合分析token成本、评估LLM输出质量,并搭建可落地的AI智能体系统。

把提示优化、LLM评测到RAG与智能体设计串成一套方法,适合想系统提升AI开发效率的人。

AI 与智能体
未扫描12.5k

相关 MCP Server

知识图谱记忆

编辑精选

by Anthropic

热门

Memory 是一个基于本地知识图谱的持久化记忆系统,让 AI 记住长期上下文。

帮 AI 和智能体补上“记不住”的短板,用本地知识图谱沉淀长期上下文,连续对话更聪明,数据也更可控。

AI 与智能体
84.2k

顺序思维

编辑精选

by Anthropic

热门

Sequential Thinking 是让 AI 通过动态思维链解决复杂问题的参考服务器。

这个服务器展示了如何让 Claude 像人类一样逐步推理,适合开发者学习 MCP 的思维链实现。但注意它只是个参考示例,别指望直接用在生产环境里。

AI 与智能体
84.2k

PraisonAI

编辑精选

by mervinpraison

热门

PraisonAI 是一个支持自反思和多 LLM 的低代码 AI 智能体框架。

如果你需要快速搭建一个能 24/7 运行的 AI 智能体团队来处理复杂任务(比如自动研究或代码生成),PraisonAI 的低代码设计和多平台集成(如 Telegram)让它上手极快。但作为非官方项目,它的生态成熟度可能不如 LangChain 等主流框架,适合愿意尝鲜的开发者。

AI 与智能体
7.0k

评论