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

NameTypeRequiredDescription
include_revenuebooleannoInclude total_revenue and average_revenue; use with a revenue goal filter
goalstringnoLimit 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.

Regenerated from source · build August 8, 2026