# list_dashboards List the authorized project dashboard catalog. Machine-readable: [focused JSON](/docs/agent-tools/tools/list_dashboards.json) ยท [complete manifest](/docs/agent-tools/manifest.json) ## Contract | Property | Value | | --- | --- | | Authorization | `RESOURCE_READ` | | Effect | `read` | | Operation | `manual` | | Tags | `dashboard`, `authoring`, `catalog` | | Defaults | `{}` | | MCP annotations | read-only, idempotent, non-destructive, closed-world | ## Input schema ```json { "type": "object" } ``` ## Output schema ```json { "additionalProperties": false, "properties": { "count": { "type": "integer" }, "instanceCount": { "type": "integer" }, "items": { "items": { "additionalProperties": {}, "type": "object" }, "type": "array" }, "projectCount": { "type": "integer" } }, "required": [ "count", "instanceCount", "items", "projectCount" ], "type": "object" } ```