Autoteam Orchestration

v1.0.0Coding Agentsstable

Orchestrate AI agents with YAML-driven workflows via universal Model Context Protocol (MCP)

agentsaiaiagentchatgptclaude
Share:
39
Stars
0
Downloads
0
Weekly
0/5

What is Autoteam Orchestration?

Autoteam Orchestration is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to orchestrate ai agents with yaml-driven workflows via universal model context protocol (mcp)

Orchestrate AI agents with YAML-driven workflows via universal Model Context Protocol (MCP)

This server falls under the Coding Agents category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Orchestrate AI agents with YAML-driven workflows via univers

Use Cases

YAML-driven agent workflows
Multi-provider agent support
diazoxide

Maintainer

LicenseMIT
Languagego
Versionv1.0.0
UpdatedMar 19, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx autoteam

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Autoteam Orchestration

Autoteam is a YAML-driven AI agent orchestration platform that exposes its control plane through the Model Context Protocol, allowing AI clients to manage and coordinate multi-agent workflows across providers including Claude, ChatGPT, Gemini, and GitHub. It deploys as a containerized service (Docker/Podman) and supports pluggable MCP servers for GitHub, Slack, databases, and filesystems, enabling teams to build complex automated workflows — code reviews, PR management, data pipelines — defined entirely in YAML and orchestrated through natural-language prompts.

Prerequisites

  • Docker 20.10 or later, or Podman 3.0 or later
  • Minimum 4 GB RAM (8 GB recommended)
  • Linux, macOS, or Windows with WSL2
  • API keys for the AI providers you plan to use (Anthropic, OpenAI, Google, etc.)
  • An MCP-compatible client to interact with the control plane
1

Install Autoteam using the install script

Run the one-line install script to download and install the autoteam binary.

curl -fsSL https://raw.githubusercontent.com/diazoxide/autoteam/main/scripts/install.sh | bash
2

Initialize a new project

Run autoteam init in your project directory to create the initial configuration. Optionally use a template to scaffold a common setup.

autoteam init --template development-team
3

Edit the YAML configuration

Open the generated autoteam.yaml and define your workers, MCP servers, and workflow flows. Each worker maps to an AI provider and prompt; flows define the orchestration logic.

workers:
  - name: "Code Reviewer"
    enabled: true
    prompt: "Review pull requests for quality, security, and style issues"

settings:
  mcp_servers:
    github:
      command: /opt/autoteam/bin/github-mcp-server
      args: ["stdio"]

  flow:
    - name: review_prs
      type: claude
      prompt: "Check open PRs and post review comments using GitHub MCP tools"
4

Deploy the agent team

Generate any additional config files and bring up the containerized agent team.

autoteam generate
autoteam up
5

Access the control plane API

The Autoteam control plane API is available at http://localhost:9090, with Swagger UI documentation at http://localhost:9090/docs/. Use this to monitor agents, trigger workflows, and inspect results.

6

Connect an MCP client to the Autoteam endpoint

Point your MCP client at the Autoteam MCP endpoint to interact with the orchestration layer through natural language.

{
  "mcpServers": {
    "autoteam": {
      "command": "autoteam",
      "args": ["mcp"],
      "env": {}
    }
  }
}

Autoteam Orchestration Examples

Client configuration

Claude Desktop configuration to connect to a running Autoteam instance via its MCP interface.

{
  "mcpServers": {
    "autoteam": {
      "command": "autoteam",
      "args": ["mcp"],
      "env": {
        "AUTOTEAM_API_URL": "http://localhost:9090"
      }
    }
  }
}

Prompts to try

These prompts show how to orchestrate multi-agent workflows through the Autoteam MCP interface.

- "List all active workers in the Autoteam deployment."
- "Trigger the review_prs workflow and report which pull requests were reviewed."
- "Add a new worker called 'Doc Writer' that generates documentation for merged PRs."
- "Show the status of all running workflows and highlight any that are stuck."
- "Create a YAML workflow that monitors the main branch and posts a Slack message when a PR is merged."

Troubleshooting Autoteam Orchestration

autoteam up fails with a Docker permission error

Add your user to the docker group: sudo usermod -aG docker $USER, then log out and back in. On macOS, ensure Docker Desktop is running before executing autoteam up.

Agents start but fail to call MCP tool endpoints

Verify the MCP server binaries referenced in your YAML config exist at the specified paths. The GitHub and Slack MCP servers are bundled in /opt/autoteam/bin/ after installation — check they were installed with: ls /opt/autoteam/bin/

Control plane API returns 502 immediately after autoteam up

The containers may still be initializing. Wait 10-15 seconds and retry. Check container logs with: docker logs autoteam-control-plane to see if there are startup errors such as missing API keys.

Frequently Asked Questions about Autoteam Orchestration

What is Autoteam Orchestration?

Autoteam Orchestration is a Model Context Protocol (MCP) server that orchestrate ai agents with yaml-driven workflows via universal model context protocol (mcp) It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Autoteam Orchestration?

Follow the installation instructions on the Autoteam Orchestration GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Autoteam Orchestration?

Autoteam Orchestration works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Autoteam Orchestration free to use?

Yes, Autoteam Orchestration is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Coding Agents MCP Servers

Explore all coding agents servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "autoteam": { "command": "npx", "args": ["-y", "autoteam"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Autoteam Orchestration?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides