plausible_timeseries

Pack: plausible · Endpoint: https://gateway.pipeworx.io/plausible/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/plausible_timeseries for the schema, then POST the same URL with its arguments for the data.

Return bounded Plausible metrics grouped by day, week, month, or hour. Answers when traffic, engagement, conversions, or revenue changed during a period.

Parameters

NameTypeRequiredDescription
intervalstringyesTime bucket
metricsarraynoPlausible metric names; defaults to visitors and pageviews
itemsstringno
goalstringnoLimit metrics to one configured goal display name
limitnumbernoMaximum 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.

Regenerated from source · build September 22, 2026