matomo_visit_summary

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

Return Matomo visits, unique visitors, actions, bounce rate, visit duration, and conversions for a site and period. Answers how traffic volume and engagement changed.

Example call

Arguments

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

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_visit_summary","arguments":{"_apiKey":"anonymous","_baseUrl":"https://demo.matomo.cloud/","site_id":1,"period":"day","date":"yesterday"}}}'

TypeScript (@pipeworx/sdk)

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

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

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