agents_traces_list
ActiveTool of io.github.saloprj/dialogbrain
List recent execution traces for an agent — the same data as /admin/requests, scoped to one agent and readable by an LLM. Use this when an agent call timed out, drafted the wrong response, or you want to know which tool/LLM call burned the latency. Pair with `agents.trace_get` for full detail on a specific trace. Filters: `status`, `success`, `source` (single value or comma-separated: `agent,voice`), `date_from`/`date_to` (ISO-8601), pagination via `limit`/`offset`. Returns `returned_count`, `dropped_on_page` (should be 0 — positive means the backend agent_id predicate let something through), and `has_more`. Edge case: a raw page of all-dedup-dropped rows yields `returned_count=0, has_more=true`; re-call with `offset += limit`.
Parameters schema
{
"type": "object",
"required": [
"agent_id"
],
"properties": {
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1,
"description": "Max rows per page (1–100)."
},
"offset": {
"type": "integer",
"minimum": 0,
"description": "Rows to skip for pagination. OMIT to start at row 0 (default)."
},
"source": {
"type": "string",
"description": "Filter by trace source. Single value or comma-separated, e.g. 'agent,voice'. Values: agent / auto_reply / agentic / outreach / voice. Note: source='agent' also matches voice traces today (known upstream bug)."
},
"status": {
"enum": [
"pending",
"executing",
"completed",
"failed",
"cancelled"
],
"type": "string",
"description": "Filter by status. OMIT to include all statuses."
},
"date_to": {
"type": "string",
"description": "ISO-8601 upper bound on created_at."
},
"success": {
"type": "boolean",
"description": "Filter to succeeded (true) or failed (false) runs only. OMIT to include both."
},
"agent_id": {
"type": "integer",
"description": "Agent ID to pull traces for (must belong to your workspace)."
},
"date_from": {
"type": "string",
"description": "ISO-8601 lower bound on created_at, e.g. '2026-04-10T00:00:00Z'."
}
}
}Parent server
io.github.saloprj/dialogbrain
https://github.com/saloprj/dialogbrain-mcp
1/7 registries