Agentbreeder

devops-infra MCP Server

Define Once. Deploy Anywhere. Govern Automatically. Framework-agnostic platform to build, deploy & govern enterprise AI agents — LangGraph · CrewAI · Claude SDK · OpenAI Agents · Google ADK · AWS · GCP · Azure · K8s · RBAC · A2A · MCP

5 views4 stars4 forksApache-2.0

Why This Matters

Discovered via github-topic:mcp and last synced 3mo ago.

Verified
Source
github-topic:mcp
Stars
4
Last synced
3mo ago
Install
Check source

Install

Install instructions not detected yet

Check the source repository for the latest setup steps.

View source instructions
26
Tools
0
Resources
0
Prompts
Standard I/O
Transport

Available Tools (26)

gcp

`cloud-run`

LangGraph

local

`docker-compose`

Kubernetes

`kubernetes`

CrewAI

aws

`app-runner`

Type

Status

Framework

Cloud vendor

Backend

Status

Limited

Limited

Feature

Status

Target

`cloud` value

Status

Deployer

Doc

Description

Analogy

Build tool

azure

`container-apps`

Code

You write Python

claude-managed

*(n/a — no container)*

Infrastructure

Terraform defines it

sequential

parallel

supervisor

fan_out_fan_in agents: triage: ref: agents/triage-agent routes: - condition: billing target: billing - condition: default target: general billing: ref: agents/billing-agent fallback: general general: ref: agents/general-agent shared_state: type: session_context backend: redis deploy: target: gcp ``` Or programmatically with the SDK: ```python from agenthub import Orchestration pipeline = ( Orchestration("support-pipeline", strategy="router", team="eng") .add_agent("triage", ref="agents/triage-agent") .add_agent("billing", ref="agents/billing-agent") .add_agent("general", ref="agents/general-agent") .with_route("triage", condition="billing", target="billing") .with_route("triage", condition="default", target="general") .with_shared_state(state_type="session_context", backend="redis") ) pipeline.deploy() ``` --- ## Install ### PyPI (recommended) ```bash # Full CLI + API server + engine pip install agentbreeder # Lightweight Python SDK only (for programmatic agent definitions) pip install agentbreeder-sdk ``` ### npm (TypeScript / JavaScript) ```bash npm install @agentbreeder/sdk ``` ```typescript import { Agent } from "@agentbreeder/sdk"; const agent = new Agent("customer-support", { version: "1.0.0", team: "eng" }) .withModel({ primary: "claude-sonnet-4", fallback: "gpt-4o" }) .withTool({ ref: "tools/zendesk-mcp" }) .withDeploy({ cloud: "aws", region: "us-east-1" }); await agent.deploy(); ``` ### Homebrew (macOS / Linux) ```bash brew tap agentbreeder/agentbreeder brew install agentbreeder ``` ### Docker **Full platform — no repo clone required:** ```bash curl -O https://raw.githubusercontent.com/agentbreeder/agentbreeder/main/deploy/docker-compose.standalone.yml docker compose -f docker-compose.standalone.yml up -d ``` Dashboard: `http://localhost:3001` · API: `http://localhost:8000` · API Docs: `http://localhost:8000/docs` This pulls pre-built images from Docker Hub (`rajits/agentbreeder-api`, `rajits/agentbreeder-dashboard`), runs database migrations automatically, and wires everything together. **CLI image (for CI/CD pipelines):** ```bash docker pull rajits/agentbreeder-cli docker run rajits/agentbreeder-cli deploy agent.yaml --target gcp ``` --- ## Quick Start ```bash pip install agentbreeder # Scaffold your first agent (interactive wizard — pick framework, cloud, model) agentbreeder init # Validate the config agentbreeder validate agent.yaml # Deploy locally agentbreeder deploy agent.yaml --target local ``` **Or run from source (contributors):** ```bash git clone https://github.com/agentbreeder/agentbreeder.git cd agentbreeder python -m venv venv && source venv/bin/activate pip install -e ".[dev]" cp .env.example .env # Start postgres + redis + API + dashboard (builds from local source) docker compose -f deploy/docker-compose.yml up -d ``` Dashboard: `http://localhost:3001` · API: `http://localhost:8000` · API Docs: `http://localhost:8000/docs` See [docs/quickstart.md](docs/quickstart.md) for the full guide. --- ## CLI 24 commands. Everything you need from scaffold to teardown. ```bash agentbreeder init # Scaffold a new agent project (interactive wizard) agentbreeder validate # Validate agent.yaml without deploying agentbreeder deploy # Deploy an agent (the core command) agentbreeder up / down # Start / stop the full local platform stack agentbreeder status # Show deploy status agentbreeder logs <name> # Tail agent logs agentbreeder list # List agents / tools / models / prompts agentbreeder describe <name> # Show detail for a registry entity agentbreeder search <query> # Search across the entire registry agentbreeder chat <name> # Interactive chat with a deployed agent agentbreeder eval run # Run evaluations (--scorer exact

Tier

Who

Command

What it does

Method

Command

Track

Ships

list

invoke`