list_collections

Pack: webflow · Endpoint: https://gateway.pipeworx.io/webflow/mcp

List the CMS collections defined on a Webflow site. Returns each collection’s id, display name, slug, singular name, created time, and last updated time. Use to discover the CMS structure of a site before listing or reading collection items (the actual site content).

Parameters

NameTypeRequiredDescription
site_idstringyesThe id of the Webflow site whose CMS collections to list (from list_sites).

Example call

Arguments

{
  "site_id": "507a2a13c14d4e0e1a0c4d8f"
}

curl

curl -X POST https://gateway.pipeworx.io/webflow/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_collections","arguments":{"site_id":"507a2a13c14d4e0e1a0c4d8f"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_collections', {
  "site_id": "507a2a13c14d4e0e1a0c4d8f"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "webflow": {
      "url": "https://gateway.pipeworx.io/webflow/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026