Token导航 LogoToken导航TokenDH.com
Agentic Deployment Engine logo
运维云端stdio官方级别未说明来源级核验

Agentic Deployment Engine

MCP Server

一个基于Claude Agent SDK和MCP集成的多智能体部署框架,支持声明式任务编排和多目标部署。

工具数

0

提示词数

0

GitHub Stars

0

资源数

0
分布式系统PythonClaudeClaude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

JaimeCernuda

提供方

JaimeCernuda

最后核验

2026/5/17 20:20

运行时

Python

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

uv run start-all

详细介绍

代理部署引擎

一个使用Claude agent SDK的多代理部署框架,具有MCP集成和声明性作业编排功能。

特性

  • SDK MCP A2A传输 -高效的进程内代理通信(比子进程快10-100倍)
  • 动态代理发现 -通过A2A协议自动检测能力
  • 声明性工作定义 -在YAML中定义复杂拓扑
  • 多目标部署 -部署到本地主机、SSH、Docker或Kubernetes
  • 多种拓扑模式 -轮辐、管道、网格、DAG、层次结构

快速开始

安装

uv sync

运行代理

# Start all example agents
uv run start-all

# Or individually
uv run weather-agent      # Port 9001
uv run maps-agent         # Port 9002
uv run controller-agent   # Port 9000

部署作业

uv run deploy start examples/jobs/simple-weather.yaml

查询代理

curl -X POST http://localhost:9000/query \
  -H "Content-Type: application/json" \
  -d '{"query": "What is the weather in Tokyo?"}'

项目结构

agentic-deployment-engine/
├── src/                    # Core framework
│   ├── agents/             # Agent base classes and transport
│   ├── backends/           # LLM backends (Claude, Gemini, CrewAI)
│   ├── core/               # Types, exceptions, container
│   ├── jobs/               # Job deployment system
│   ├── security/           # Auth and permissions
│   └── observability/      # Logging and telemetry
├── examples/               # Example implementations
│   ├── agents/             # Weather, Maps, Controller agents
│   ├── tools/              # MCP tools
│   ├── jobs/               # Job YAML definitions
│   └── demos/              # Demo scripts
├── tests/                  # Test suite
│   ├── unit/               # Fast, mocked tests
│   ├── integration/        # Component coordination
│   └── usability/          # End-to-end validation
└── docs/                   # Documentation

文档

拓扑模式

星型

配备专业人员的中央协调员。

         Controller
         /   |   \
    Weather Maps Database

管道

顺序处理阶段。

Intake → Process → Validate → Output

网格

所有代理都连接到所有其他代理。

  1 ←→ 2
  ↕ ╲╱ ↕
  4 ←→ 3

有向无环图

具有并行分支的有向无环图。

       ┌─ Branch-A ─┐
Source ─┤            ├─ Merge
       └─ Branch-B ─┘

分层的

多级树形组织。

         Root
        /    \
    VP-Eng  VP-Sales
    /    \
 Team-A  Team-B

测试

# Run all tests
uv run pytest tests/ -v

# By category
uv run pytest tests/unit/ -v
uv run pytest tests/integration/ -v
uv run pytest tests/usability/ -v

# With coverage
uv run pytest tests/ --cov=src

CLI命令

uv run deploy validate    # Validate job definition
uv run deploy plan        # Preview deployment plan
uv run deploy start       # Deploy and run

依赖项

  • Python 3.11+
  • Claude Agent SDK(主分支)
  • FastAPI+Uvicorn
  • 派丹蒂克
  • HTTPX
  • paramiko(SSH部署)

许可证

请参阅许可证文件。

目录标签

目录标签

分布式系统PythonClaude多智能体本地部署任务编排SDK集成声明式部署

支持客户端

Claude

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Python

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdionone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP