Webflow MCP Server

Cloudstdio
Repositorio

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.

Conectar

Añade esta configuración a .claude/mcp.json

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

Herramientas (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"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Webflow (@webflow)
Repositorio
https://github.com/webflow/mcp-server
Estrellas
0
Última actualización
12 de julio de 2026