KosmoKrator

productivity

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.

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.

Agent Surfaces

Machine-Readable Metadata

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.