Webflow MCP Server

Cloudstdio
Repository

Webflow's official MCP server that connects AI tools to your Webflow projects via the Webflow Data API. Lets agents manage sites and pages, work with CMS collections and items, read form submissions, and publish changes, enabling content updates and site automation from an MCP-compatible client.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "webflow": {
      "command": "npx",
      "args": [
        "-y",
        "webflow-mcp-server"
      ],
      "env": {
        "WEBFLOW_TOKEN": "<YOUR_WEBFLOW_TOKEN>"
      }
    }
  }
}

Tools (3)

sites_list

List the Webflow sites accessible with the provided token.

{
  "type": "object",
  "properties": {}
}

collections_list

List CMS collections for a Webflow site.

{
  "type": "object",
  "required": [
    "site_id"
  ],
  "properties": {
    "site_id": {
      "type": "string",
      "description": "ID of the Webflow site"
    }
  }
}

collection_items_create_item

Create a new item in a CMS collection.

{
  "type": "object",
  "required": [
    "collection_id",
    "fields"
  ],
  "properties": {
    "fields": {
      "type": "object",
      "description": "Field values for the new item"
    },
    "collection_id": {
      "type": "string",
      "description": "ID of the target collection"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Webflow (@webflow)
Repository
https://github.com/webflow/mcp-server
Stars
0
Last Updated
July 12, 2026