plausible_timeseries
Pack: plausible · Endpoint: https://gateway.pipeworx.io/plausible/mcp
Return bounded Plausible metrics grouped by day, week, month, or hour. Answers when traffic, engagement, conversions, or revenue changed during a period.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
interval | string | yes | Time bucket |
metrics | array | no | Plausible metric names; defaults to visitors and pageviews |
items | string | no | |
goal | string | no | Limit metrics to one configured goal display name |
limit | number | no | Maximum rows, default 100 and maximum 500 |
Example call
Arguments
{
"_apiKey": "your-plausible-stats-api-key",
"site_id": "example.com",
"date_range": "30d",
"interval": "day",
"metrics": [
"visitors",
"pageviews"
]
}
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_timeseries","arguments":{"_apiKey":"your-plausible-stats-api-key","site_id":"example.com","date_range":"30d","interval":"day","metrics":["visitors","pageviews"]}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('plausible_timeseries', {
"_apiKey": "your-plausible-stats-api-key",
"site_id": "example.com",
"date_range": "30d",
"interval": "day",
"metrics": [
"visitors",
"pageviews"
]
});
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.