Webflow MCP Server

Cloudstdio
Репозиторий

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.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

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

Инструменты (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"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Webflow (@webflow)
Репозиторий
https://github.com/webflow/mcp-server
Звёзды
0
Последнее обновление
12 июля 2026 г.