matomo_page_performance

Pack: matomo · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

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

Return bounded Matomo page URLs with views, unique views, entrances, exits, bounce rate, and time on page. Answers which content attracts, engages, or loses visitors.

Parameters

NameTypeRequiredDescription
limitnumberno

Example call

Arguments

{
  "_apiKey": "anonymous",
  "_baseUrl": "https://demo.matomo.cloud/",
  "site_id": 1,
  "period": "day",
  "date": "yesterday",
  "limit": 5
}

curl

curl -X POST https://gateway.pipeworx.io/matomo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"matomo_page_performance","arguments":{"_apiKey":"anonymous","_baseUrl":"https://demo.matomo.cloud/","site_id":1,"period":"day","date":"yesterday","limit":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('matomo_page_performance', {
  "_apiKey": "anonymous",
  "_baseUrl": "https://demo.matomo.cloud/",
  "site_id": 1,
  "period": "day",
  "date": "yesterday",
  "limit": 5
});

Connect

Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the matomo pack
{
  "mcpServers": {
    "matomo": {
      "url": "https://gateway.pipeworx.io/matomo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026