{ "name": "get-design", "description": "Get detailed information about a Canva design, such as a doc, presentation, whiteboard, video, or sheet. This includes design owner information, title, URLs for editing and viewing, thumbnail, created/updated time, and page count. This tool doesn't work on folders or images. You must provide the design ID, which you can find by using the `search-designs` or `list-folder-items` tools. When given a URL to a Canva design, you can extract the design ID from the URL. Example URL: https://www.canva.com/design/{design_id}. If the user provides a shortlink (e.g. https://canva.link/abc123), use `resolve-shortlink` with the shortlink ID first to get the full URL.", "inputSchema": { "type": "object", "properties": { "design_id": { "type": "string", "minLength": 11, "maxLength": 11, "pattern": "^D[a-zA-Z0-9_-]+$", "description": "ID of the design to get information for" }, "user_intent": { "type": "string", "description": "Mandatory description of what the user is trying to accomplish with this tool call. This should always be provided by LLM clients. Please keep it concise (255 characters or less recommended)." } }, "required": [ "design_id" ], "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#" } }