plausible_breakdown
Pack: plausible · Endpoint: https://gateway.pipeworx.io/plausible/mcp
Return ranked Plausible metrics grouped by a page, source, campaign, geography, device, browser, or custom-property dimension. Answers which channels, content, audiences, or experiences drove results.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dimension | string | yes | Plausible dimension such as visit:source, visit:utm_campaign, event:page, visit:country_name, or event:props:plan |
metrics | array | no | Metrics; defaults to visitors and pageviews |
items | string | no | |
limit | number | no | Maximum rows, default 20 and maximum 100 |
Example call
Arguments
{
"_apiKey": "your-plausible-stats-api-key",
"site_id": "example.com",
"date_range": "30d",
"dimension": "visit:source",
"metrics": [
"visitors",
"pageviews"
],
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/plausible/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"plausible_breakdown","arguments":{"_apiKey":"your-plausible-stats-api-key","site_id":"example.com","date_range":"30d","dimension":"visit:source","metrics":["visitors","pageviews"],"limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('plausible_breakdown', {
"_apiKey": "your-plausible-stats-api-key",
"site_id": "example.com",
"date_range": "30d",
"dimension": "visit:source",
"metrics": [
"visitors",
"pageviews"
],
"limit": 20
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"plausible": {
"url": "https://gateway.pipeworx.io/plausible/mcp"
}
}
}
See Getting Started for client-specific install steps.