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.

Webflow logoWebflow
Oauth2Api Key

Webflow is a no-code website design and hosting platform for building responsive sites and online stores. It empowers users to launch, update, and manage web content with zero coding required.

51 Tools

Try Webflow now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Webflow
Try asking
TOOLS

Supported Tools

Every Webflow action and event your agent gets out of the box.

Create Asset Folder

Tool to create a new Asset Folder within a Webflow site.

Bulk Create Collection Items

Tool to create one or multiple items in a Webflow CMS Collection across multiple locales.

Create Webflow Collection

Tool to create a new collection in a Webflow site.

Create Collection Field

Tool to create a custom field in a Webflow collection.

Create Webflow Collection Item

This tool creates a new item in a specified Webflow collection.

Create Live Webflow Collection Item

Tool to create a collection item that will be immediately published to the live site.

Delete Webflow Asset

Tool to delete an Asset from Webflow.

Delete Webflow Collection

Tool to delete a collection from Webflow using its unique identifier.

Delete Collection Field

Tool to delete a custom field from a Webflow collection.

Delete Webflow Collection Item

This tool allows you to delete a specific item from a collection in Webflow.

Delete Multiple Collection Items

Tool to delete multiple items from a Webflow collection in a single request.

Delete Webflow Webhook

Tool to remove a Webhook from Webflow.

Fulfill Order

This tool allows you to mark an order as fulfilled in Webflow's e-commerce system.

Get Asset Details

Retrieves detailed information about a specific asset by its ID from a Webflow site.

Get Asset Folder Details

Tool to retrieve details about a specific Asset Folder in Webflow.

Get Collection Details

Retrieves a specific collection by its ID from a Webflow site.

Get Collection Item

This tool retrieves a specific item from a Webflow collection.

Get Component Properties

Tool to get the default property values of a component definition.

Get Custom Domains

Tool to retrieve all custom domains associated with a specific Webflow site.

Get Item Inventory

This tool retrieves the current inventory levels for a specific SKU item in a Webflow e-commerce site.

Get Live Collection Item

Retrieves details of a selected Collection live Item from Webflow.

Get Order Details

This tool retrieves detailed information about a specific order in Webflow.

Get Page Metadata

Tool to retrieve metadata for a single Webflow page by page_id.

Get Page DOM Content

Tool to retrieve the DOM/content node structure for a Webflow static page.

Get Webflow Site Information

This tool retrieves detailed information about a specific Webflow site.

Get Token Authorized By

Tool to retrieve information about the user who authorized the access token.

List Asset Folders

Tool to list all asset folders within a given Webflow site.

List Webflow Assets

Tool to retrieve all assets (images, files) uploaded to a Webflow site.

List Collection Items

This tool retrieves a list of items from a specified collection in Webflow.

List Webflow Collections

This tool retrieves a list of all collections for a given Webflow site.

List Comment Threads

Tool to list all comment threads for a Webflow site.

List Form Submissions

This tool retrieves a list of form submissions for a specific Webflow site.

List Webflow Orders

This tool retrieves a list of all orders for a specified Webflow site using the GET /sites/{site_id}/orders endpoint.

List Pages

This tool retrieves a list of all pages for a specified Webflow site.

List Webflow Sites

This tool retrieves a list of all Webflow sites accessible to the authenticated user.

List Webflow Webhooks

Tool to list all App-created Webhooks registered for a given site.

Publish Collection Items

Tool to publish one or multiple staged collection items in Webflow.

Publish Webflow Site

This tool publishes a Webflow site, making all staged changes live.

Refund Order

This tool allows you to refund a Webflow e-commerce order.

Unfulfill Order

This tool allows you to mark a previously fulfilled order as unfulfilled in Webflow.

Unpublish Live Collection Item

Tool to unpublish a live item from the Webflow site and set the isDraft property to true.

Unpublish Live Collection Items

Tool to unpublish up to 100 items from the live site and set isDraft property to true.

Update Collection Field

Tool 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 Inventory

This 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 Item

Tool to update a selected live Item in a Webflow Collection.

Update Live Collection Items

Tool to update single or multiple published items (up to 100) in a Webflow Collection.

Update Order

This tool allows updating specific fields of an existing order in Webflow.

Update Page Metadata

Tool to update page-level metadata in Webflow including SEO and Open Graph fields.

Update Webflow Site

Tool to update a Webflow site's properties such as name and parent folder.

Upload Asset to Webflow

This tool allows users to upload assets (files, images, etc.

SETUP GUIDE

Connect Webflow MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'List all Webflow collections for my main site' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Webflow API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Webflow Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List all blog posts in the "News" collection'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Webflow actions with your 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
FAQ

Frequently asked questions

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

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

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

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

Start with Webflow.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Webflow tool your agent needs.Free to start.

Start building