cms
Webflow MCP, CLI, and Lua Integration for AI Agents
Webflow integration docs for AI agents: MCP gateway setup, Webflow CLI commands, Lua API reference, credentials, and function schemas.
7 functions 6 read 1 write Manual OAuth token auth
Webflow for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
webflow- route_slug
webflow- package
webflow- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Webflow CLIHeadless setup and direct function calls. Webflow MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Webflow MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Webflow.
Claude Code Webflow MCP setup for Claude Code. Cursor Webflow MCP setup for Cursor. Codex Webflow MCP setup for Codex. OpenAI Agents Webflow MCP setup for OpenAI Agents SDK. Claude Agent SDK Webflow MCP setup for Claude Agent SDK. Vercel AI SDK Webflow MCP setup for Vercel AI SDK. LangChain Webflow MCP setup for LangChain. LangGraph Webflow MCP setup for LangGraph. CrewAI Webflow MCP setup for CrewAI. MCP clients Webflow MCP setup for Generic MCP Clients.
Webflow CLI Matrix
Use these pages for direct Webflow CLI workflows in scripts, CI, cron, and agent wrappers.
CI Webflow CLI for CI. Cron Jobs Webflow CLI for cron jobs. Shell Scripts Webflow CLI for shell scripts. Headless Automation Webflow CLI for headless automation. Coding Agents Webflow CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
webflow.webflow_list_sites | Read read | 0 | List all Webflow sites the authenticated user has access to. Returns site IDs, names, and domains needed for further CMS operations. |
webflow.webflow_get_site | Read read | 1 | Get details for a specific Webflow site by its ID. Returns site name, domain, publishing status, and other metadata. |
webflow.webflow_list_collections | Read read | 3 | List CMS collections for a Webflow site. Collections are content models (e.g., "Blog Posts", "Team Members") that hold structured items. |
webflow.webflow_list_items | Read read | 3 | List items in a Webflow CMS collection. Returns paginated results with item IDs, field data, and draft/publish status. |
webflow.webflow_get_item | Read read | 2 | Get a single CMS item from a Webflow collection by its ID. Returns full field data including rich text, images, and references. |
webflow.webflow_create_item | Write write | 3 | Create a new item in a Webflow CMS collection. Pass field data as key-value pairs matching the collection's schema. Set live to true to publish immediately. |
webflow.webflow_get_current_user | Read read | 0 | Get the currently authenticated Webflow user. Returns user profile including name, email, and account details. |