# get_dashboard Get one authorized dashboard's governed metadata. Machine-readable: [focused JSON](/docs/agent-tools/tools/get_dashboard.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 { "additionalProperties": false, "properties": { "dashboardId": { "minLength": 1, "type": "string" } }, "required": [ "dashboardId" ], "type": "object" } ``` ## Output schema ```json { "additionalProperties": false, "properties": { "dashboard": { "additionalProperties": {}, "type": "object" } }, "required": [ "dashboard" ], "type": "object" } ```