Canva Integration for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Canva MCP or direct API to generate new designs, update templates, fetch assets, and automate publishing workflows through natural language.
Canva Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Supported Tools

Tools
Access user specific brand templates listThis year, brand template ids will change; integrations storing them must update within 6 months.
Create canva design with optional assetCreate a new canva design using a preset or custom dimensions, and add an asset with `asset id` from a user's project using relevant apis.
Create comment reply in designThis preview api allows replying to comments within a design on canva, with a limit of 100 replies per comment.
Create design comment in preview apiThis api is in preview and may change without notice; integrations using it won't pass review.
Create user or sub folderThis api creates a folder in a canva user's projects at the top level or within another folder, returning the new folder's id and additional details upon success.
Delete asset by idYou can delete an asset by specifying its `assetid`.
Exchange oauth 2 0 access or refresh tokenThe oauth 2.
Fetch asset upload job statusSummarize asset upload outcome by repeatedly calling the endpoint until a 'success' or 'failed' status is received after using the create asset upload job api.
Fetch canva connect signing public keysThe api for verifying canva webhooks, 'connect/keys,' is in preview, meaning unstable, not for public integrations, and provides a rotating jwk for signature verification to prevent replay attacks.
Fetch current user detailsReturns the user id, team id, and display name of the user account associated with the provided access token.
Fetch design metadata and access informationGets the metadata for a design.
Get design export job resultGet the outcome of a canva design export job; if done, receive download links for the design’s pages.
Initiate canva design autofill jobUpcoming brand template id updates require migration within 6 months.
Initiates canva design export jobCanva's new job feature exports designs in multiple formats using a design id, with provided download links.
List design pages with paginationPreview api for canva: subject to unannounced changes and not for public integrations.
List folder items by type with sortingLists the items in a folder, including each item's `type`.
List User DesignsProvides a summary of canva user designs, includes search filtering, and allows showing both self-created and shared designs with sorting options.
Move item to specified folderTransfers an item to a different folder by specifying both the destination folder's id and the item's id.
Remove folder and move contents to trashDeletes a folder by moving the user's content to trash and reassigning other users' content to their top-level projects.
Retrieve app public key setReturns the json web key set (public keys) of an app.
Retrieve a specific design commentThis preview api is subject to unannounced changes and can't be used in public integrations.
Retrieve asset metadata by idYou can retrieve the metadata of an asset by specifying its `assetid`.
Retrieve brand template dataset definitionCanva's brand template ids will change later this year, including a 6-month integration migration.
Retrieve canva enterprise brand template metadataUpcoming update will change brand template ids; integrations must migrate within 6 months.
Retrieve design autofill job statusApi users with canva enterprise membership can retrieve design autofill job results, potentially requiring multiple requests until a `success` or `failed` status is received.
Retrieve design import job statusGets the status and results of design import jobs created using the [create design import job api](https://www.
Retrieve folder details by idGets the name and other details of a folder using a folder's `folderid`.
RetrieveuserprofiledataCurrently, this returns the display name of the user account associated with the provided access token.
Revoke oauth tokensRevoke a refresh token to end its lineage and user consent, requiring re-authentication.
Update asset s name and tags by idYou can update the name and tags of an asset by specifying its `assetid`.
Update folder details by idUpdates a folder's details using its `folderid`.
Validate oauth token propertiesCheck an access token's validity and properties via introspection, requiring authentication.

Connect Canva MCP Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Canva tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Create a new Canva design with Instagram post template')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Connect Canva API Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio_openai
Install the Composio SDK

Initialize Composio and Create Tool Router Session

python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
Import and initialize Composio client, then create a Tool Router session

Execute Canva Tools via Tool Router with Your Agent

python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'Create a new Instagram post using my brand template'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
Get tools from Tool Router session and execute Canva actions with your Agent

Why Use Composio?

AI Native Canva Integration

  • Supports both Canva MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Canva data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Canva access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Canva
  • Scoped, least privilege access to Canva resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Canva with Composio?

No, you can get started immediately using Composio's built-in Canva app. For production, we recommend configuring your own OAuth credentials.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.