developer selects which accounts are listed, and include_terminal selects which phases are listed. include_terminal never widens the set of accounts — to see other developers’ agents, set developer.
Equivalent to murmur ls in the CLI.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
MCP tool that lists agents in the current workspace with their phase, task progress, VM, and cost — the fleet overview for coding agents.
developer selects which accounts are listed, and include_terminal selects which phases are listed. include_terminal never widens the set of accounts — to see other developers’ agents, set developer.
Equivalent to murmur ls in the CLI.
| Name | Type | Required | Description |
|---|---|---|---|
include_terminal | boolean | no | Also include agents in terminal states (completed, failed, canceled). Widens the phase filter only — it does not change which accounts are listed (use developer for that). Default: false (live agents only). |
developer | string | no | Which accounts to list — the only way to widen account scope. "" (default) lists only the calling account’s agents; * lists every account; alice lists one specific account. |
workspace | string | no | Workspace name. Overrides the session default. |
| Field | Type | Description |
|---|---|---|
slug | string | Agent task slug. |
phase | string | Current lifecycle phase (e.g. PHASE_RUNNING, PHASE_TASK_COMPLETE). |
vm | object | VM instance name, project, zone. |
progress | object | Latest progress update — label, detail, timestamp. |
cost | number | Cumulative cost in USD. |
{}
[
{
"slug": "fix-auth",
"phase": "PHASE_RUNNING",
"vm": {"instanceName": "murmur-a1b2c3d4", "project": "acme-agents", "zone": "us-central1-a"},
"progress": {"label": "tool", "detail": "Running tests", "timestamp": "2026-05-14T10:30:00Z"},
"cost": 0.42
}
]
{
"include_terminal": true
}
{
"developer": "*",
"workspace": "backend"
}
| Code | Meaning | What to do |
|---|---|---|
UNAUTHENTICATED | Identity token is missing or expired. | Check credentials. |