matomo_page_performance

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

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, or use one-click install buttons:

{
  "mcpServers": {
    "matomo": {
      "url": "https://gateway.pipeworx.io/matomo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026