File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,16 +25,16 @@ ACP is built on the [ACP Go SDK](https://github.com/coder/acp-go-sdk) and provid
2525
2626``` bash
2727# Start ACP server on stdio
28- $ docker agent acp ./agent.yaml
28+ $ docker agent serve acp ./agent.yaml
2929
3030# With a multi-agent team config
31- $ docker agent acp ./team.yaml
31+ $ docker agent serve acp ./team.yaml
3232
3333# From the agent catalog
34- $ docker agent acp agentcatalog/pirate
34+ $ docker agent serve acp agentcatalog/pirate
3535
3636# With a custom session database
37- $ docker agent acp ./agent.yaml --session-db ./my-sessions.db
37+ $ docker agent serve acp ./agent.yaml --session-db ./my-sessions.db
3838```
3939
4040## How It Works
Original file line number Diff line number Diff line change @@ -102,12 +102,12 @@ $ docker agent api ociReference --pull-interval 10 # auto-refresh
102102Expose agents as MCP tools for use in Claude Desktop, Claude Code, or other MCP clients.
103103
104104``` bash
105- $ docker agent mcp [config] [flags]
105+ $ docker agent serve mcp [config] [flags]
106106
107107# Examples
108- $ docker agent mcp agent.yaml
109- $ docker agent mcp agent.yaml --working-dir /path/to/project
110- $ docker agent mcp agentcatalog/coder
108+ $ docker agent serve mcp agent.yaml
109+ $ docker agent serve mcp agent.yaml --working-dir /path/to/project
110+ $ docker agent serve mcp agentcatalog/coder
111111```
112112
113113See [ MCP Mode] ( /features/mcp-mode/ ) for detailed setup.
Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ The `docker agent serve mcp` command makes your agents available to any applicat
2828
2929``` bash
3030# Expose a local config
31- $ docker agent mcp ./agent.yaml
31+ $ docker agent serve mcp ./agent.yaml
3232
3333# Expose from a registry
34- $ docker agent mcp agentcatalog/pirate
34+ $ docker agent serve mcp agentcatalog/pirate
3535
3636# Set the working directory
37- $ docker agent mcp ./agent.yaml --working-dir /path/to/project
37+ $ docker agent serve mcp ./agent.yaml --working-dir /path/to/project
3838```
3939
4040## Using with Claude Desktop
@@ -73,7 +73,7 @@ Restart Claude Desktop after updating the configuration.
7373$ claude mcp add --transport stdio myagent \
7474 --env OPENAI_API_KEY=$OPENAI_API_KEY \
7575 --env ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY \
76- -- docker agent mcp agentcatalog/pirate --working-dir $( pwd)
76+ -- docker agent serve mcp agentcatalog/pirate --working-dir $( pwd)
7777```
7878
7979## Multi-Agent in MCP Mode
You can’t perform that action at this time.
0 commit comments