list_sites
Pack: webflow · Endpoint: https://gateway.pipeworx.io/webflow/mcp
List all Webflow sites accessible to the connected account. Returns each site’s id, display name, short name, preview URL, last published time, and custom domains. Use to discover which Webflow sites are available before reading their CMS collections or site content.
Example call
Arguments
{}
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_sites","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_sites', {});
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.