Provider-neutral subagent dispatch

Dispatch cloud subagents from MCP.

A small control plane for handing slow agent work to durable cloud runtimes, starting with AWS AgentCore.

dispatch run active
spawn_cloud_agent({
  task: "audit this repository",
  runtime: "aws-agentcore"
})
  1. preflight

    runtime and credentials checked

  2. handoff

    work moved out of the chat loop

  3. result

    logs, artifacts, and final output return through MCP

Operating model

The lead agent gets one tool. Providers stay behind adapters.

01

Generic MCP call

The agent calls spawn_cloud_agent, then checks status, logs, and results.

02

Adapter boundary

AWS AgentCore logic lives in the AWS adapter, not in every client or prompt.

03

Explicit live runtime

Live AWS dispatch remains opt-in and verified before real cloud work starts.

Install

Run the MCP server locally.

Start with local config and doctor checks. Use live cloud dispatch only after runtime verification.

Live AWS verification
npm install -g @agent-dispatch/cli
agentdispatch init
agentdispatch doctor

npx -y @agent-dispatch/mcp-server \
  --config ./agentdispatch.config.json