KosmoKrator

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_token Manual OAuth token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Webflow MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Webflow.

Webflow CLI Matrix

Use these pages for direct Webflow CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
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.