matomo_visit_summary

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_visit_summary for the schema, then POST the same URL with its arguments for the data.

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 — 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