Webflow MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Webflow MCP or direct API to publish sites, update content, create new pages, and manage collections through natural language.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Webflow Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Webflow now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Create Asset FolderTool to create a new Asset Folder within a Webflow site.
Bulk Create Collection ItemsTool to create one or multiple items in a Webflow CMS Collection across multiple locales.
Create Webflow CollectionTool to create a new collection in a Webflow site.
Create Collection FieldTool to create a custom field in a Webflow collection.
Create Webflow Collection ItemThis tool creates a new item in a specified Webflow collection.
Create Live Webflow Collection ItemTool to create a collection item that will be immediately published to the live site.
Delete Webflow AssetTool to delete an Asset from Webflow.
Delete Webflow CollectionTool to delete a collection from Webflow using its unique identifier.
Delete Collection FieldTool to delete a custom field from a Webflow collection.
Delete Webflow Collection ItemThis tool allows you to delete a specific item from a collection in Webflow.
Delete Multiple Collection ItemsTool to delete multiple items from a Webflow collection in a single request.
Delete Webflow WebhookTool to remove a Webhook from Webflow.
Fulfill OrderThis tool allows you to mark an order as fulfilled in Webflow's e-commerce system.
Get Asset DetailsRetrieves detailed information about a specific asset by its ID from a Webflow site.
Get Asset Folder DetailsTool to retrieve details about a specific Asset Folder in Webflow.
Get Collection DetailsRetrieves a specific collection by its ID from a Webflow site.
Get Collection ItemThis tool retrieves a specific item from a Webflow collection.
Get Component PropertiesTool to get the default property values of a component definition.
Get Custom DomainsTool to retrieve all custom domains associated with a specific Webflow site.
Get Item InventoryThis tool retrieves the current inventory levels for a specific SKU item in a Webflow e-commerce site.
Get Live Collection ItemRetrieves details of a selected Collection live Item from Webflow.
Get Order DetailsThis tool retrieves detailed information about a specific order in Webflow.
Get Page MetadataTool to retrieve metadata for a single Webflow page by page_id.
Get Page DOM ContentTool to retrieve the DOM/content node structure for a Webflow static page.
Get Webflow Site InformationThis tool retrieves detailed information about a specific Webflow site.
Get Token Authorized ByTool to retrieve information about the user who authorized the access token.
List Asset FoldersTool to list all asset folders within a given Webflow site.
List Webflow AssetsTool to retrieve all assets (images, files) uploaded to a Webflow site.
List Collection ItemsThis tool retrieves a list of items from a specified collection in Webflow.
List Webflow CollectionsThis tool retrieves a list of all collections for a given Webflow site.
List Comment ThreadsTool to list all comment threads for a Webflow site.
List Form SubmissionsThis tool retrieves a list of form submissions for a specific Webflow site.
List Webflow OrdersThis tool retrieves a list of all orders for a specified Webflow site using the GET /sites/{site_id}/orders endpoint.
List PagesThis tool retrieves a list of all pages for a specified Webflow site.
List Webflow SitesThis tool retrieves a list of all Webflow sites accessible to the authenticated user.
List Webflow WebhooksTool to list all App-created Webhooks registered for a given site.
Publish Collection ItemsTool to publish one or multiple staged collection items in Webflow.
Publish Webflow SiteThis tool publishes a Webflow site, making all staged changes live.
Refund OrderThis tool allows you to refund a Webflow e-commerce order.
Unfulfill OrderThis tool allows you to mark a previously fulfilled order as unfulfilled in Webflow.
Unpublish Live Collection ItemTool to unpublish a live item from the Webflow site and set the isDraft property to true.
Unpublish Live Collection ItemsTool to unpublish up to 100 items from the live site and set isDraft property to true.
Update Collection FieldTool to update a custom field in a Webflow collection.
Update Collection Item (V2 Single)Tool to update a selected Item in a Webflow Collection using the single-item PATCH endpoint.
Update Item InventoryThis tool allows you to update the inventory levels of a specific SKU item in your Webflow e-commerce site by either setting the inventory quantity directly or updating it incrementally.
Update Live Webflow Collection ItemTool to update a selected live Item in a Webflow Collection.
Update Live Collection ItemsTool to update single or multiple published items (up to 100) in a Webflow Collection.
Update OrderThis tool allows updating specific fields of an existing order in Webflow.
Update Page MetadataTool to update page-level metadata in Webflow including SEO and Open Graph fields.
Update Webflow SiteTool to update a Webflow site's properties such as name and parent folder.
Upload Asset to WebflowThis tool allows users to upload assets (files, images, etc.
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 Webflow tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('List all Webflow collections for my main site')
        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

Why Use Composio?

AI Native Webflow Integration

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

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Webflow 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 Webflow
  • Scoped, least privilege access to Webflow resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

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

Yes, Webflow requires you to configure your own OAuth credentials. Once set up, Composio handles token storage, refresh, and lifecycle management for you.

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
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
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.