Creativity · MCP — server

MCP Webflow Server

The MCP Webflow Server is a community-maintained Model Context Protocol server wrapping the Webflow Data API v2. It lets an LLM client list sites and collections, create or update CMS items, publish drafts, and manage form submissions — a handy tool chain for AI-assisted content operations on Webflow-powered sites.

MCP facts

Kind
server
Ecosystem
anthropic-mcp
Language
TypeScript / Node.js
Transports
stdio

Capabilities

  • Tools: list_sites, list_collections, create_item, update_item, publish_site
  • Resources: webflow://collection/{id} and webflow://item/{id} URIs
  • Auth: Webflow API token with scoped permissions

Install

npx -y @modelcontextprotocol/server-webflow

Configuration

{
  "mcpServers": {
    "webflow": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-webflow"],
      "env": { "WEBFLOW_TOKEN": "wf_..." }
    }
  }
}

Frequently asked questions

Is this server official?

No — Webflow has not shipped a first-party MCP server. Pick a community implementation with recent commits and review it before use.

Which Webflow plan do I need?

The Data API is gated by site plan. CMS and Business plans unlock collection writes; Workspace API access needs a paid Workspace plan.

Does publishing count against anything?

Publishing is unlimited on most paid plans, but the Data API enforces standard rate limits (~60 requests/minute). Batch updates where possible.

Sources

  1. Webflow Data API — accessed 2026-04-20
  2. MCP community servers — accessed 2026-04-20