plausible_overview
Pack: plausible · Endpoint: https://gateway.pipeworx.io/plausible/mcp
Return aggregate visitors, visits, pageviews, bounce rate, visit duration, and optional goal revenue for a Plausible site. Answers how much traffic and engagement the site generated during a period.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
include_revenue | boolean | no | Include total_revenue and average_revenue; use with a revenue goal filter |
goal | string | no | Limit metrics to one configured goal display name |
Example call
Arguments
{
"_apiKey": "your-plausible-stats-api-key",
"site_id": "example.com",
"date_range": "30d"
}
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_overview","arguments":{"_apiKey":"your-plausible-stats-api-key","site_id":"example.com","date_range":"30d"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('plausible_overview', {
"_apiKey": "your-plausible-stats-api-key",
"site_id": "example.com",
"date_range": "30d"
});
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.