# add_dashboard_page Add one dashboard page to a private draft using an exact expected revision. Machine-readable: [focused JSON](/docs/agent-tools/tools/add_dashboard_page.json) ยท [complete manifest](/docs/agent-tools/manifest.json) ## Contract | Property | Value | | --- | --- | | Authorization | `RESOURCE_EDIT` | | Effect | `write` | | Operation | `manual` | | Tags | `dashboard`, `authoring`, `intent` | | Defaults | `{}` | | MCP annotations | read/write, not idempotent, non-destructive, closed-world | ## Input schema ```json { "additionalProperties": false, "properties": { "dashboardId": { "minLength": 1, "type": "string" }, "draftId": { "minLength": 1, "type": "string" }, "expectedRevision": { "additionalProperties": false, "properties": { "contentHash": { "type": "string" }, "number": { "type": "integer" }, "revisionId": { "type": "string" } }, "required": [ "contentHash", "number", "revisionId" ], "type": "object" }, "pageId": { "type": "string" }, "title": { "type": "string" } }, "required": [ "dashboardId", "draftId", "expectedRevision" ], "type": "object" } ``` ## Output schema ```json { "additionalProperties": false, "properties": { "lifecycle": { "additionalProperties": {}, "type": "object" }, "revision": { "additionalProperties": {}, "type": "object" } }, "required": [ "lifecycle", "revision" ], "type": "object" } ```