get_collection_item
Pack: webflow · Endpoint: https://gateway.pipeworx.io/webflow/mcp
Get a single item (record) from a Webflow CMS collection by its id. Returns the item’s id, draft/archived status, last published time, and fieldData (the full CMS field values). Use after list_collection_items to read one piece of Webflow site content in detail.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
collection_id | string | yes | The id of the Webflow CMS collection containing the item (from list_collections). |
item_id | string | yes | The id of the CMS item to retrieve (from list_collection_items). |
Example call
Arguments
{
"collection_id": "614b3f2a9c1d4e5f2a8c9d0e",
"item_id": "72e5c8f1a2b3d4e5f6g7h8i9"
}
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":"get_collection_item","arguments":{"collection_id":"614b3f2a9c1d4e5f2a8c9d0e","item_id":"72e5c8f1a2b3d4e5f6g7h8i9"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_collection_item', {
"collection_id": "614b3f2a9c1d4e5f2a8c9d0e",
"item_id": "72e5c8f1a2b3d4e5f6g7h8i9"
});
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.