Automate Canva tasks via Rube MCP (Composio): designs, exports, folders, brand templates, autofill. Always search tools first for current schemas.
Add this skill
npx mdskills install sickn33/canva-automationComprehensive Canva automation guide with clear workflows, async patterns, and practical pitfalls
1---2name: canva-automation3description: "Automate Canva tasks via Rube MCP (Composio): designs, exports, folders, brand templates, autofill. Always search tools first for current schemas."4requires:5 mcp: [rube]6---78# Canva Automation via Rube MCP910Automate Canva design operations through Composio's Canva toolkit via Rube MCP.1112## Prerequisites1314- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)15- Active Canva connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `canva`16- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas1718## Setup1920**Get Rube MCP**: Add `https://rube.app/mcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.2122231. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds242. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `canva`253. If connection is not ACTIVE, follow the returned auth link to complete Canva OAuth264. Confirm connection status shows ACTIVE before running any workflows2728## Core Workflows2930### 1. List and Browse Designs3132**When to use**: User wants to find existing designs or browse their Canva library3334**Tool sequence**:351. `CANVA_LIST_USER_DESIGNS` - List all designs with optional filters [Required]3637**Key parameters**:38- `query`: Search term to filter designs by name39- `continuation`: Pagination token from previous response40- `ownership`: Filter by 'owned', 'shared', or 'any'41- `sort_by`: Sort field (e.g., 'modified_at', 'title')4243**Pitfalls**:44- Results are paginated; follow `continuation` token until absent45- Deleted designs may still appear briefly; check design status46- Search is substring-based, not fuzzy matching4748### 2. Create and Design4950**When to use**: User wants to create a new Canva design from scratch or from a template5152**Tool sequence**:531. `CANVA_ACCESS_USER_SPECIFIC_BRAND_TEMPLATES_LIST` - Browse available brand templates [Optional]542. `CANVA_CREATE_CANVA_DESIGN_WITH_OPTIONAL_ASSET` - Create a new design [Required]5556**Key parameters**:57- `design_type`: Type of design (e.g., 'Presentation', 'Poster', 'SocialMedia')58- `title`: Name for the new design59- `asset_id`: Optional asset to include in the design60- `width` / `height`: Custom dimensions in pixels6162**Pitfalls**:63- Design type must match Canva's predefined types exactly64- Custom dimensions have minimum and maximum limits65- Asset must be uploaded first via CANVA_CREATE_ASSET_UPLOAD_JOB before referencing6667### 3. Upload Assets6869**When to use**: User wants to upload images or files to Canva for use in designs7071**Tool sequence**:721. `CANVA_CREATE_ASSET_UPLOAD_JOB` - Initiate the asset upload [Required]732. `CANVA_FETCH_ASSET_UPLOAD_JOB_STATUS` - Poll until upload completes [Required]7475**Key parameters**:76- `name`: Display name for the asset77- `url`: Public URL of the file to upload (for URL-based uploads)78- `job_id`: Upload job ID returned from step 1 (for status polling)7980**Pitfalls**:81- Upload is asynchronous; you MUST poll the job status until it completes82- Supported formats include PNG, JPG, SVG, MP4, GIF83- File size limits apply; large files may take longer to process84- The `job_id` from CREATE returns the ID needed for status polling85- Status values: 'in_progress', 'success', 'failed'8687### 4. Export Designs8889**When to use**: User wants to download or export a Canva design as PDF, PNG, or other format9091**Tool sequence**:921. `CANVA_LIST_USER_DESIGNS` - Find the design to export [Prerequisite]932. `CANVA_CREATE_CANVA_DESIGN_EXPORT_JOB` - Start the export process [Required]943. `CANVA_GET_DESIGN_EXPORT_JOB_RESULT` - Poll until export completes and get download URL [Required]9596**Key parameters**:97- `design_id`: ID of the design to export98- `format`: Export format ('pdf', 'png', 'jpg', 'svg', 'mp4', 'gif', 'pptx')99- `pages`: Specific page numbers to export (array)100- `quality`: Export quality ('regular', 'high')101- `job_id`: Export job ID for polling status102103**Pitfalls**:104- Export is asynchronous; you MUST poll the job result until it completes105- Download URLs from completed exports expire after a limited time106- Large designs with many pages take longer to export107- Not all formats support all design types (e.g., MP4 only for animations)108- Poll interval: wait 2-3 seconds between status checks109110### 5. Organize with Folders111112**When to use**: User wants to create folders or organize designs into folders113114**Tool sequence**:1151. `CANVA_POST_FOLDERS` - Create a new folder [Required]1162. `CANVA_MOVE_ITEM_TO_SPECIFIED_FOLDER` - Move designs into folders [Optional]117118**Key parameters**:119- `name`: Folder name120- `parent_folder_id`: Parent folder for nested organization121- `item_id`: ID of the design or asset to move122- `folder_id`: Target folder ID123124**Pitfalls**:125- Folder names must be unique within the same parent folder126- Moving items between folders updates their location immediately127- Root-level folders have no parent_folder_id128129### 6. Autofill from Brand Templates130131**When to use**: User wants to generate designs by filling brand template placeholders with data132133**Tool sequence**:1341. `CANVA_ACCESS_USER_SPECIFIC_BRAND_TEMPLATES_LIST` - List available brand templates [Required]1352. `CANVA_INITIATE_CANVA_DESIGN_AUTOFILL_JOB` - Start autofill with data [Required]136137**Key parameters**:138- `brand_template_id`: ID of the brand template to use139- `title`: Title for the generated design140- `data`: Key-value mapping of placeholder names to replacement values141142**Pitfalls**:143- Template placeholders must match exactly (case-sensitive)144- Autofill is asynchronous; poll for completion145- Only brand templates support autofill, not regular designs146- Data values must match the expected type for each placeholder (text, image URL)147148## Common Patterns149150### Async Job Pattern151152Many Canva operations are asynchronous:153```1541. Initiate job (upload, export, autofill) -> get job_id1552. Poll status endpoint with job_id every 2-3 seconds1563. Check for 'success' or 'failed' status1574. On success, extract result (asset_id, download_url, design_id)158```159160### ID Resolution161162**Design name -> Design ID**:163```1641. Call CANVA_LIST_USER_DESIGNS with query=design_name1652. Find matching design in results1663. Extract id field167```168169**Brand template name -> Template ID**:170```1711. Call CANVA_ACCESS_USER_SPECIFIC_BRAND_TEMPLATES_LIST1722. Find template by name1733. Extract brand_template_id174```175176### Pagination177178- Check response for `continuation` token179- Pass token in next request's `continuation` parameter180- Continue until `continuation` is absent or empty181182## Known Pitfalls183184**Async Operations**:185- Uploads, exports, and autofills are all asynchronous186- Always poll job status; do not assume immediate completion187- Download URLs from exports expire; use them promptly188189**Asset Management**:190- Assets must be uploaded before they can be used in designs191- Upload job must reach 'success' status before the asset_id is valid192- Supported formats vary; check Canva documentation for current limits193194**Rate Limits**:195- Canva API has rate limits per endpoint196- Implement exponential backoff for bulk operations197- Batch operations where possible to reduce API calls198199**Response Parsing**:200- Response data may be nested under `data` key201- Job status responses include different fields based on completion state202- Parse defensively with fallbacks for optional fields203204## Quick Reference205206| Task | Tool Slug | Key Params |207|------|-----------|------------|208| List designs | CANVA_LIST_USER_DESIGNS | query, continuation |209| Create design | CANVA_CREATE_CANVA_DESIGN_WITH_OPTIONAL_ASSET | design_type, title |210| Upload asset | CANVA_CREATE_ASSET_UPLOAD_JOB | name, url |211| Check upload | CANVA_FETCH_ASSET_UPLOAD_JOB_STATUS | job_id |212| Export design | CANVA_CREATE_CANVA_DESIGN_EXPORT_JOB | design_id, format |213| Get export | CANVA_GET_DESIGN_EXPORT_JOB_RESULT | job_id |214| Create folder | CANVA_POST_FOLDERS | name, parent_folder_id |215| Move to folder | CANVA_MOVE_ITEM_TO_SPECIFIED_FOLDER | item_id, folder_id |216| List templates | CANVA_ACCESS_USER_SPECIFIC_BRAND_TEMPLATES_LIST | (none) |217| Autofill template | CANVA_INITIATE_CANVA_DESIGN_AUTOFILL_JOB | brand_template_id, data |218
Full transparency — inspect the skill content before installing.