canvaCreate, export, and manage Canva designs via the Connect API. Generate social posts, carousels, and graphics programmatically.
Install via ClawdBot CLI:
clawdbot install abgohel/canvaCreate, export, and manage Canva designs via the Connect API.
export CANVA_CLIENT_ID="your_client_id"
export CANVA_CLIENT_SECRET="your_client_secret"
Run the auth flow to get access tokens (stored in ~/.canva/tokens.json)
https://api.canva.com/rest/v1
Canva uses OAuth 2.0. The skill handles token refresh automatically.
# Get access token (stored in ~/.canva/tokens.json)
ACCESS_TOKEN=$(cat ~/.canva/tokens.json | jq -r '.access_token')
curl -s "https://api.canva.com/rest/v1/designs" \
-H "Authorization: Bearer $ACCESS_TOKEN" | jq .
curl -s "https://api.canva.com/rest/v1/designs/{designId}" \
-H "Authorization: Bearer $ACCESS_TOKEN" | jq .
curl -X POST "https://api.canva.com/rest/v1/autofills" \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"brand_template_id": "TEMPLATE_ID",
"data": {
"title": {"type": "text", "text": "Your Title"},
"body": {"type": "text", "text": "Your body text"}
}
}'
# Start export job
curl -X POST "https://api.canva.com/rest/v1/exports" \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"design_id": "DESIGN_ID",
"format": {"type": "png", "width": 1080, "height": 1080}
}'
# Check export status
curl -s "https://api.canva.com/rest/v1/exports/{jobId}" \
-H "Authorization: Bearer $ACCESS_TOKEN" | jq .
curl -X POST "https://api.canva.com/rest/v1/asset-uploads" \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/octet-stream" \
-H 'Asset-Upload-Metadata: {"name": "my-image.png"}' \
--data-binary @image.png
curl -s "https://api.canva.com/rest/v1/brand-templates" \
-H "Authorization: Bearer $ACCESS_TOKEN" | jq .
| Format | Options |
|--------|---------|
| PNG | width, height, lossless |
| JPG | width, height, quality (1-100) |
| PDF | standard, print |
| MP4 | (for video designs) |
| GIF | (for animated designs) |
GET /brand-templatesPOST /autofillsPOST /exportsGET /designsCommon errors:
401 - Token expired, refresh needed403 - Missing required scope429 - Rate limit exceeded404 - Design/template not founddesign:content:read - Read designsdesign:content:write - Create/modify designsasset:read - Read assetsasset:write - Upload assetsbrandtemplate:content:read - Read brand templatesBuilt by Meow 😼 for the Moltbook community 🦞
Generated Mar 1, 2026
Agencies can automate the creation of branded social media posts for multiple clients using Canva templates. They can generate Instagram posts, carousels, and stories in bulk, export them as PNG or JPG, and schedule uploads to social platforms, saving design time and ensuring brand consistency.
Online stores can programmatically create promotional graphics for new products by autofilling Canva templates with product details and images. This allows for quick generation of banners, ads, and social media visuals to support sales campaigns and seasonal promotions.
Educators and training platforms can produce instructional materials like infographics, presentation slides, and handouts by leveraging Canva's design templates. They can automate the creation of visual aids for courses, workshops, or online learning modules, enhancing engagement.
Event organizers can generate event flyers, invitations, and social media announcements using Canva's brand templates. By automating design tasks, they can quickly produce and export materials for conferences, webinars, or community events, streamlining promotional efforts.
Develop a subscription-based platform that integrates Canva's API to offer automated design services to businesses. Charge monthly fees for access to custom templates, batch processing, and analytics on design performance, targeting small to medium enterprises.
Freelancers can offer a service where they set up and manage Canva automation for clients, handling template creation, content updates, and exports. Charge per project or retainer fees for ongoing maintenance, focusing on industries like real estate or nonprofits.
Provide a white-labeled tool that marketing agencies can rebrand to offer automated design creation to their clients. Earn revenue through licensing fees or a percentage of agency sales, enabling agencies to scale services without in-house design teams.
💬 Integration Tip
Ensure environment variables for client ID and secret are securely stored, and implement token refresh logic to handle OAuth 2.0 authentication seamlessly in production.
Display and control HTML content on connected Mac, iOS, or Android nodes via a web-based canvas with live reload and remote actions.
生成和编辑各种类型的图表(drawio、mermaid、excalidraw)。支持流程图、时序图、类图、ER图、思维导图、架构图、网络拓扑图等常见图表类型。能够根据自然语言描述创建新图表,也能读取并修改已有的 drawio/mermaid/excalidraw 文件。使用独立的 MCP server (mcp-diagram-generator) 生成图表文件,减少 token 消耗并保证输出一致性。支持自动配置管理,默认输出路径为项目目录下的 diagrams/{format}/,支持自定义路径和自动创建目录。
Create software diagrams using Mermaid syntax. Use when users need to create, visualize, or document software through diagrams including class diagrams, sequence diagrams, flowcharts, ERDs, C4 architecture diagrams, state diagrams, git graphs, and other diagram types. Triggers include requests to diagram, visualize, model, map out, or show the flow of a system.
Generate diagrams from descriptions with Mermaid, PlantUML, or ASCII for architecture, flows, sequences, and data models.
Generate and render diagrams from Mermaid syntax into PNG, SVG, or PDF using customizable themes and various diagram types.
Generate beautiful, hand-drawn Mermaid diagrams with robust syntax (quoted labels, ELK layout). Use this skill when the user asks for "diagram", "flowchart", "sequence diagram", or "visualize this process".