list_collection_items
Pack: webflow · Endpoint: https://gateway.pipeworx.io/webflow/mcp
List the items (records) in a Webflow CMS collection — the live site content such as blog posts, products, or team members. Returns paginated items with their id, draft/archived status, last published time, and fieldData (the CMS field values). Use to read the actual content stored in a Webflow collection.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
collection_id | string | yes | The id of the Webflow CMS collection whose items to list (from list_collections). |
limit | number | no | Maximum number of items to return (default 50, max 100). |
offset | number | no | Number of items to skip for pagination (default 0). |
Example call
Arguments
{
"collection_id": "614b3f2a9c1d4e5f2a8c9d0e"
}
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_collection_items","arguments":{"collection_id":"614b3f2a9c1d4e5f2a8c9d0e"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_collection_items', {
"collection_id": "614b3f2a9c1d4e5f2a8c9d0e"
});
More examples
{
"collection_id": "614b3f2a9c1d4e5f2a8c9d0e",
"limit": 25,
"offset": 50
}
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.