MCP Hub
Back to servers

Claude Team

A multi-agent orchestration server that coordinates various AI models (Claude, GPT, Gemini) as specialized technical experts to collaborate on complex software development tasks. It provides automated task distribution, pre-built coding workflows, and project analysis tools to manage end-to-end development cycles.

Stars
32
Forks
3
Tools
18
Updated
Dec 21, 2025
Validated
Jan 9, 2026

🤖 Claude Team

Multi-Agent MCP Server for AI-Powered Development Teams

Orchestrate GPT, Claude, Gemini and more to collaborate on complex tasks

npm version downloads Node.js MCP License Tests

English | 简体中文


✨ Features

FeatureDescription
🤖 Multi-Model CollaborationConfigure multiple AI models to work together, each leveraging their strengths
🧠 Smart Task DistributionTech Lead analyzes tasks and automatically assigns them to the best-suited experts
🔗 Workflow Templates5 pre-built workflows: code generation, bug fixing, refactoring, review, documentation
🎯 Custom ExpertsDefine your own experts (Rust, K8s, Security, etc.) via environment variables
📊 ObservabilityDashboard, cost estimation, and task planning preview
🌐 Proxy API SupportCustom Base URLs, compatible with various proxy services
📝 Collaboration HistoryComplete record of all collaborations with search support

🚀 Quick Start

Installation

# Global install
npm install -g claude-team

# Or use directly with npx (no install needed)
npx claude-team

Basic Configuration

Add to your IDE's MCP configuration file:

📍 Configuration File Locations
IDEPath
Claude Code~/.claude/config.json
Windsurf~/.codeium/windsurf/mcp_config.json
Cursor~/.cursor/mcp.json
{
  "mcpServers": {
    "claude-team": {
      "command": "npx",
      "args": ["-y", "claude-team"],
      "env": {
        "CLAUDE_TEAM_MAIN_KEY": "sk-your-api-key",
        "CLAUDE_TEAM_MAIN_URL": "https://api.openai.com/v1",
        "CLAUDE_TEAM_MAIN_MODEL": "gpt-4o",
        "CLAUDE_TEAM_MAIN_PROVIDER": "openai"
      }
    }
  }
}

Start Using

> Help me build a user login feature with the team

> Have the team optimize this code for performance

🎬 How It Works

User: "Optimize this SQL query for performance"

Tech Lead Analysis →
├── Creates: SQL Optimization Expert (powerful)
├── Creates: Index Analysis Expert (balanced)  
└── Workflow: sequential
User: "Build a settings page with dark mode"

Tech Lead Analysis →
├── Creates: UI Component Expert (balanced)
├── Creates: Theme System Expert (fast)
├── Creates: State Management Expert (balanced)
└── Workflow: parallel → review

🛠️ Available Tools

Core Tools

ToolDescription
team_work🚀 Team collaboration (auto-creates experts)
ask_expert💬 Consult an expert (supports custom experts)
code_review🔍 Code review
fix_bug🐛 Bug fixing

Workflow Tools

ToolDescription
list_workflows📋 List all workflow templates
run_workflow▶️ Execute a specific workflow
suggest_workflow💡 Auto-recommend workflow based on task

Pre-built Workflows:

WorkflowPurposeSteps
code-generationGenerate code from requirementsDesign → Implement → Test → Review
bug-fixDiagnose and fix bugsDiagnose → Fix → Verify
refactoringCode refactoringAnalyze → Plan → Execute → Review
code-reviewMulti-dimensional reviewSecurity / Quality / Performance (parallel)
documentationGenerate documentationAnalyze → Document

Observability Tools

ToolDescription
team_dashboard🎛️ View team status, experts, models, stats
cost_estimate💰 Estimate task cost (tokens, price, time)
explain_plan🧠 Preview task assignment plan
usage_stats📈 View model usage statistics

Integration Tools

ToolDescription
read_project_files📄 Read project files for context
analyze_project_structure🏗️ Analyze project structure and tech stack
generate_commit_message📝 Generate commit message from diff

History Tools

ToolDescription
history_list📋 View collaboration history
history_get📄 Get history details
history_search🔎 Search history records
history_context📚 Get recent context

⚙️ Configuration

Environment Variables

VariableRequiredDescription
CLAUDE_TEAM_MAIN_KEYMain model API Key
CLAUDE_TEAM_MAIN_URLMain model API URL
CLAUDE_TEAM_MAIN_MODELMain model ID (default: gpt-4o)
CLAUDE_TEAM_MAIN_PROVIDERProvider: openai / anthropic / gemini
CLAUDE_TEAM_MODEL{N}_*Worker model N config (inherits from MAIN)
CLAUDE_TEAM_CUSTOM_EXPERTSCustom experts (JSON format)

N = 1, 2, 3... supports up to 10 worker models

Custom Experts

Define your own experts beyond the built-in frontend, backend, qa:

{
  "env": {
    "CLAUDE_TEAM_CUSTOM_EXPERTS": "{\"rust\":{\"name\":\"Rust Expert\",\"prompt\":\"You are a Rust expert...\",\"tier\":\"powerful\"},\"k8s\":{\"name\":\"K8s Expert\",\"prompt\":\"You are a Kubernetes expert...\",\"tier\":\"balanced\"}}"
  }
}
FieldRequiredDescription
nameExpert display name
promptExpert role description (System Prompt)
tierModel tier: fast / balanced / powerful
skillsSkill tags array

Model Tiers

TierUse CaseExample Scenarios
fastSimple, quick tasksFormatting, simple queries, docs
balancedRegular dev tasksComponents, APIs, unit tests
powerfulComplex reasoningArchitecture, optimization, security

📦 Changelog

v0.4.0

  • 🎯 Custom Experts - Define experts via environment variables
  • 🔗 Workflow Templates - 5 pre-built workflows
  • 📊 Observability - Dashboard, cost estimation, plan preview
  • 🔌 Integration - Project file reading, structure analysis, commit messages
  • 💡 Smart Recommendations - Auto-suggest workflows
  • 🧪 Test Coverage - 155 test cases

v0.3.0

  • 🔄 Task interrupt/resume support
  • 💬 Multi-turn expert conversations
  • 📊 Token counting and cost estimation
  • 📋 Expert templates (6 built-in + custom)
  • 🔔 Webhook notifications
  • ⚡ Exponential backoff retry
  • 🔧 Hot config reload
Earlier versions

v0.2.x

  • 🌊 Streaming output support
  • 📊 Usage statistics
  • 🎯 Model strategies
  • 💾 Result caching
  • 🔄 Auto model switching

v0.1.x

  • 🎉 Initial release
  • 🤖 Multi-model collaboration
  • 🌐 Proxy API support

🤝 Contributing

Contributions are welcome! Please read our:

📄 License

MIT


⭐ Star History

Star History Chart


⬆ Back to Top

Made with ❤️ by the community

Reviews

No reviews yet

Sign in to write a review