plausible_goal_performance

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

Return events, visitors, and conversion rate grouped by configured Plausible goal. Answers which signup, activation, purchase, or other goals converted during a period.

Parameters

NameTypeRequiredDescription
limitnumbernoMaximum goals, default 20 and maximum 100

Example call

Arguments

{
  "_apiKey": "your-plausible-stats-api-key",
  "site_id": "example.com",
  "date_range": "month",
  "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_goal_performance","arguments":{"_apiKey":"your-plausible-stats-api-key","site_id":"example.com","date_range":"month","limit":20}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('plausible_goal_performance', {
  "_apiKey": "your-plausible-stats-api-key",
  "site_id": "example.com",
  "date_range": "month",
  "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.

Regenerated from source · build August 8, 2026