Give any AI the ability to build, validate, and deploy production multi-agent systems. This is an MCP server that connects AI assistants — ChatGPT, Claude, Gemini, Copilot, Cursor, Windsurf, and any MCP-compatible environment — directly to the ADAS platform. An AI developer says "Build me a customer support system with order tracking and escalation" — and their AI assistant handles the entire life
Add this skill
npx mdskills install ariekogan/ateam-mcpComprehensive MCP server with 12 well-documented tools for deploying multi-agent systems
1# ateam-mcp23**Give any AI the ability to build, validate, and deploy production multi-agent systems.**45This is an MCP server that connects AI assistants — ChatGPT, Claude, Gemini, Copilot, Cursor, Windsurf, and any MCP-compatible environment — directly to the [ADAS](https://ateam-ai.com) platform.67An AI developer says *"Build me a customer support system with order tracking and escalation"* — and their AI assistant handles the entire lifecycle: reads the spec, builds skill definitions, validates them, deploys to production, and verifies health. No manual JSON authoring, no docs reading, no copy-paste workflows.89## Why this matters1011Today, building multi-agent systems requires deep platform knowledge, manual configuration, and switching between docs, editors, and dashboards. **ateam-mcp eliminates all of that** by making the ADAS platform a native capability of the AI tools developers already use.1213The AI assistant becomes the developer interface:1415```16Developer: "Create an identity verification agent that checks documents,17 validates faces, and escalates fraud cases"1819AI Assistant:20 → reads ADAS spec (adas_get_spec)21 → studies working examples (adas_get_examples)22 → builds skill + solution definitions23 → validates iteratively (adas_validate_skill, adas_validate_solution)24 → deploys to production (adas_deploy_solution)25 → verifies everything is running (adas_get_solution → health)2627Developer: "Add a new skill that handles address verification"2829AI Assistant:30 → deploys into the existing solution (adas_deploy_skill)31 → redeploys (adas_redeploy)32 → confirms health33```3435No context switching. No manual steps. The full ADAS platform — specs, validation, deployment, monitoring — is available as natural language.3637## How it reaches the AI community3839### ChatGPT users4041ChatGPT supports MCP connectors in Developer Mode. Users connect by pasting a single URL:4243**Settings → Connectors → Developer Mode → paste `https://mcp.ateam-ai.com`**4445That's it. All 12 ADAS tools appear in ChatGPT. Any ChatGPT Pro, Plus, Business, or Enterprise user can build and deploy multi-agent solutions through conversation.4647### Claude users4849**Claude Desktop** — install as an extension (one-click) or add to config:5051```json52{53 "mcpServers": {54 "ateam": {55 "command": "npx",56 "args": ["-y", "@ateam-ai/mcp"],57 "env": {58 "ADAS_TENANT": "your-tenant",59 "ADAS_API_KEY": "your-api-key"60 }61 }62 }63}64```6566**Claude Code** — one command:6768```bash69claude mcp add ateam -- npx -y @ateam-ai/mcp70```7172### Cursor / Windsurf / VS Code (Copilot)7374Add to `.cursor/mcp.json`, `mcp_config.json`, or `.vscode/mcp.json`:7576```json77{78 "mcpServers": {79 "ateam": {80 "command": "npx",81 "args": ["-y", "@ateam-ai/mcp"],82 "env": {83 "ADAS_TENANT": "your-tenant",84 "ADAS_API_KEY": "your-api-key"85 }86 }87 }88}89```9091### Gemini and other platforms9293As MCP adoption grows (it's now governed by the Agentic AI Foundation under the Linux Foundation, co-founded by Anthropic, OpenAI, and Block), every AI platform that implements MCP gets access to ateam-mcp automatically. The remote HTTP endpoint (`https://mcp.ateam-ai.com`) works with any client that supports Streamable HTTP transport.9495### Discovery9697Developers find ateam-mcp through:9899- **npm** — `npm search mcp ai-agents` → `@ateam-ai/mcp`100- **Official MCP Registry** — registry.modelcontextprotocol.io101- **Claude Desktop Extensions** — built-in extension browser102- **Claude Code Plugin Marketplace** — `/plugin` → Discover tab103- **Windsurf MCP Marketplace** — built-in marketplace104- **VS Code MCP Gallery** — Extensions view105- **Community directories** — Smithery, mcp.so, PulseMCP (30,000+ combined listings)106107## Available tools108109| Tool | What it does |110|---|---|111| `adas_get_spec` | Read the ADAS specification — skill schema, solution architecture, enums, agent guides |112| `adas_get_examples` | Get complete working examples — skills, connectors, solutions |113| `adas_validate_skill` | Validate a skill definition through the 5-stage pipeline |114| `adas_validate_solution` | Validate a solution — cross-skill contracts + quality scoring |115| `adas_deploy_solution` | Deploy a complete solution to production |116| `adas_deploy_skill` | Add a skill to an existing solution |117| `adas_deploy_connector` | Deploy a connector to ADAS Core |118| `adas_list_solutions` | List all deployed solutions |119| `adas_get_solution` | Inspect a solution — definition, skills, health, status, export |120| `adas_update` | Update a solution or skill incrementally (PATCH) |121| `adas_redeploy` | Push changes live — regenerates MCP servers, deploys to ADAS Core |122| `adas_solution_chat` | Talk to the Solution Bot for guided modifications |123124## Setup125126```bash127# Clone128git clone https://github.com/ariekogan/ateam-mcp.git129cd ateam-mcp130131# Install132npm install133134# Configure135cp .env.example .env136# Edit .env with your ADAS tenant and API key137138# Run139npm start140```141142## Architecture143144```145┌─────────────────────────────────────────────┐146│ AI Environment │147│ (ChatGPT / Claude / Cursor / Windsurf) │148│ │149│ Developer: "build me a support system" │150└──────────────────┬──────────────────────────┘151 │ MCP protocol152 │ (stdio or HTTP)153┌──────────────────▼──────────────────────────┐154│ ateam-mcp │155│ 12 tools — spec, validate, deploy, manage │156└──────────────────┬──────────────────────────┘157 │ HTTPS158 │ X-ADAS-TENANT / X-API-KEY159┌──────────────────▼──────────────────────────┐160│ ADAS External Agent API │161│ api.ateam-ai.com │162└──────────────────┬──────────────────────────┘163 │164┌──────────────────▼──────────────────────────┐165│ ADAS Core │166│ Multi-agent runtime │167└─────────────────────────────────────────────┘168```169170## License171172MIT173
Full transparency — inspect the skill content before installing.