oci ghcr.io/liohtml/matomo-mcp:v0.1.3stdioMITupdated 22d ago
Talk to your Matomo Analytics. From Claude, Cursor, VS Code, or any MCP client.
What can you do with Matomo Analytics?
matomo-mcp
Talk to your Matomo Analytics. From Claude, Cursor, VS Code, or any MCP client.
15 curated, read-only analytics tools + a full-API escape hatch. Single binary, instant startup, context-friendly.
Quickstart Β· Clients Β· Tools Β· Configuration Β· FAQ
You βΈ How was traffic yesterday, and where did it come from?
Claude βΈ Yesterday you had 14,472 visits (11,416 unique visitors, 66% bounce rate).
Top acquisition channels:
1. Organic search β 6,120 visits (Google 92%)
2. Direct β 4,890 visits
3. AI assistants β 1,204 visits (β 31% vs. last week)
Want me to break down which landing pages converted best?
Every question your Matomo dashboard can answer, your AI assistant can now answer too β including follow-ups, comparisons, and "why?".
β¨ Why matomo-mcp?
| π― Curated, not generated | 15 hand-crafted tools modeled on real analytics questions β not 70+ auto-generated API mirrors that flood the model's context and degrade tool selection. |
| β‘ Instant startup | No introspection round-trips. One static binary, no Node, no Python, no runtime. Starts in milliseconds. |
| π Safe by default | Read-only reporting tools. Token sent via POST only (never in URLs/logs), redacted from every error. TLS verification on by default. |
| π§ Context-friendly | Row limits on every report and a hard response budget with actionable guidance β one tool call can never blow up the context window. |
| π‘ Real-time included | Live visitor counters and a visit log (matomo_realtime) β see what's happening right now. |
| π§° Never a cage | matomo_api reaches any Reporting API method (funnels, heatmaps, custom dimensions, β¦) when the curated tools don't cover it. |
| π Resilient | Automatic retries with backoff on 429/5xx/network hiccups. Helpful, hint-annotated error messages the model can act on. |
π Quickstart
1. Install
Prebuilt binary (Linux, macOS, Windows) β grab it from Releases, or:
# Cargo
cargo install matomo-mcp
# From source
cargo install --git https://github.com/Liohtml/matomo-mcp
# Docker
docker pull ghcr.io/liohtml/matomo-mcp
2. Get a Matomo API token
Matomo β Settings (β) β Personal β Security β Auth tokens β Create new token. View-only permissions are all it needs.
3. Verify the connection
matomo-mcp --url https://your-matomo.example.com --token YOUR_TOKEN --check
β Connected β Matomo version 5.2.1
β Token grants access to 3 site(s):
#1 My Shop (https://shop.example.com)
#2 Blog (https://blog.example.com)
#3 Docs (https://docs.example.com)
4. Connect your client β¬
π Connect your client
claude mcp add matomo \
--env MATOMO_URL=https://your-matomo.example.com \
--env MATOMO_TOKEN=YOUR_TOKEN \
--env MATOMO_DEFAULT_SITE_ID=1 \
-- matomo-mcp
Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\):
{
"mcpServers": {
"matomo": {
"command": "matomo-mcp",
"env": {
"MATOMO_URL": "https://your-matomo.example.com",
"MATOMO_TOKEN": "YOUR_TOKEN",
"MATOMO_DEFAULT_SITE_ID": "1"
}
}
}
}
.cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"matomo": {
"command": "matomo-mcp",
"env": {
"MATOMO_URL": "https://your-matomo.example.com",
"MATOMO_TOKEN": "YOUR_TOKEN",
"MATOMO_DEFAULT_SITE_ID": "1"
}
}
}
}
.vscode/mcp.json:
{
"servers": {
"matomo": {
"type": "stdio",
"command": "matomo-mcp",
"env": {
"MATOMO_URL": "https://your-matomo.example.com",
"MATOMO_TOKEN": "${input:matomo-token}",
"MATOMO_DEFAULT_SITE_ID": "1"
}
}
},
"inputs": [
{
"id": "matomo-token",
"type": "promptString",
"description": "Matomo API token",
"password": true
}
]
}
Any client that speaks MCP over stdio works with the generic shape:
{
"command": "matomo-mcp",
"args": [],
"env": {
"MATOMO_URL": "https://your-matomo.example.com",
"MATOMO_TOKEN": "YOUR_TOKEN",
"MATOMO_DEFAULT_SITE_ID": "1"
}
}
{
"mcpServers": {
"matomo": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "MATOMO_URL", "-e", "MATOMO_TOKEN", "-e", "MATOMO_DEFAULT_SITE_ID",
"ghcr.io/liohtml/matomo-mcp"
],
"env": {
"MATOMO_URL": "https://your-matomo.example.com",
"MATOMO_TOKEN": "YOUR_TOKEN",
"MATOMO_DEFAULT_SITE_ID": "1"
}
}
}
}
Run the server once (on a workstation, LAN box, or container) and point any number of MCP clients at it:
matomo-mcp --url https://your-matomo.example.com --token YOUR_TOKEN --http 127.0.0.1:8080
Clients connect to http://127.0.0.1:8080/mcp with the streamable HTTP
transport, e.g.:
claude mcp add --transport http matomo http://127.0.0.1:8080/mcp
[!WARNING] The HTTP endpoint has no built-in authentication. Keep it bound to
127.0.0.1, or put a reverse proxy with auth (or a firewall) in front before exposing it beyond localhost.
[!TIP] Set
MATOMO_DEFAULT_SITE_IDand the model never has to ask which site you mean. No token at hand? Try it against the public demo:--url https://demo.matomo.cloud --default-site-id 1(no token needed).
π§ Tools
| Tool | Answers questions like |
|---|---|
matomo_list_sites |
"Which sites do we track?" |
matomo_visits_summary |
"How much traffic did we get last week?" |
matomo_pages |
"What are our top pages? Where do people exit?" |
matomo_referrers |
"Where do visitors come from? Which campaigns work? What do AI assistants send us?" |
matomo_events |
"How often was the configurator opened?" |
matomo_goals |
"What's our conversion rate per goal?" |
matomo_ecommerce |
"Revenue this month? Best-selling products?" |
matomo_geo |
"Which countries/cities do visitors come from?" |
matomo_devices |
"Mobile vs. desktop? Which browsers?" |
matomo_visit_times |
"When during the day/week do people visit?" |
matomo_site_search |
"What do people search for on our site β and find nothing?" |
matomo_realtime |
"Who's on the site right now?" |
matomo_page_performance |
"Which pages load slowly?" |
matomo_annotations |
"Which deploys or campaign launches line up with that traffic spike?" |
matomo_api |
Everything else β funnels, heatmaps, custom dimensions, any Module.action of the Reporting API |
All tools accept site_id, period (day/week/month/year/range), date
(today, yesterday, 2026-07-01, last30, or start,end ranges), an optional
segment (e.g. deviceType==mobile;country==DE), and a row limit.
Prompts to try
- "Compare this week's traffic with last week β what changed and why?"
- "Top 10 landing pages by conversions this month, with bounce rates."
- "Are we getting traffic from ChatGPT or Perplexity? Trend over 3 months."
- "Which internal searches return no results? Suggest content we should create."
- "Anything unusual in the visitor log right now?"
βοΈ Configuration
| Flag | Env | Default | Description |
|---|---|---|---|
--url |
MATOMO_URL |
β | Matomo instance URL (sub-directory installs like https://example.com/matomo/ work). Without it the server still starts and tool calls return setup guidance |
--token |
MATOMO_TOKEN |
β | API token (token_auth), view access is enough |
--default-site-id |
MATOMO_DEFAULT_SITE_ID |
β | Site used when the model doesn't specify one |
--header |
MATOMO_EXTRA_HEADERS |
β | Extra HTTP headers (Name:Value, repeatable / comma-separated) β for auth proxies, Zero-Trust, multi-tenant setups |
--timeout-secs |
MATOMO_TIMEOUT_SECS |
30 |
Per-request timeout |
--max-response-chars |
MATOMO_MAX_RESPONSE_CHARS |
50000 |
Response budget before truncation |
--http |
MATOMO_HTTP_BIND |
β | Serve MCP over streamable HTTP on this address instead of stdio (endpoint: http://<addr>/mcp) |
--insecure |
MATOMO_INSECURE |
false |
Accept self-signed TLS certificates (explicit opt-in) |
--check |
β | β | Verify URL + token + site access, then exit |
π How is this different from FGRibreau/mcp-matomo?
mcp-matomo (which inspired this project β thanks! π) introspects your Matomo instance at startup and generates one MCP tool per API method. matomo-mcp takes the opposite approach:
| matomo-mcp | mcp-matomo | |
|---|---|---|
| Tool set | 15 curated tools + escape hatch | ~70+ generated tools |
| Model context cost | Small, stable | Large, instance-dependent |
| Parameter types | Exact, hand-written enums/defaults | Inferred from parameter names |
| Startup | Instant (no network I/O) | Introspection round-trips (or cached spec file) |
| TLS verification | On by default | Disabled for introspection |
| Sub-directory installs | β | Path is overwritten |
| Response size guard | Row limits + hard budget | β |
| Retries on transient errors | β | β |
| Real-time (Live) tools | β | β (not part of report metadata) |
If you want every API method as its own tool, use mcp-matomo. If you want the model to reliably pick the right tool and never flood its context, use matomo-mcp.
π©Ί Troubleshooting
Either pass --default-site-id 1 (recommended) or let the model call matomo_list_sites first.
Run matomo-mcp --url ... --token ... --check. If it fails: regenerate the token (Settings β Personal β Security), make sure it has at least view access to the site.
MATOMO_URL must point at the Matomo root β the folder containing index.php. For https://example.com/matomo/index.php, use https://example.com/matomo/.
Inject the bypass headers: --header "CF-Access-Client-Id:..." --header "CF-Access-Client-Secret:..." (or via MATOMO_EXTRA_HEADERS).
That's the context guard doing its job. Ask for fewer rows, a shorter date range, or raise --max-response-chars.
πΊοΈ Roadmap
- Streamable HTTP transport (
--http, host it once, connect many clients) -
matomo_annotationsβ read & correlate deploy markers with traffic - Multi-instance support (one server, several Matomo installations)
- Homebrew tap & winget manifest
- MCP registry listing (official registry via
server.json, Glama)
Want one of these sooner? Open an issue β or a PR, see CONTRIBUTING.md.
π οΈ Development
cargo test # 37 tests, fully offline (wiremock)
cargo clippy --all-targets -- -D warnings
cargo run -- --url https://demo.matomo.cloud --default-site-id 1 --check
Architecture and design decisions: docs/ARCHITECTURE.md.
π License & Credits
MIT. Not affiliated with or endorsed by Matomo β Matomo is a registered trademark of InnoCraft Ltd.
Built with rmcp, the official Rust MCP SDK. Inspired by FGRibreau/mcp-matomo.
- MCP Registry name:
mcp-name: io.github.Liohtml/matomo-mcp
If matomo-mcp saves you a dashboard visit, a β helps others find it.
Install
Add Matomo Analytics to your client. Pick the one you use.
claude mcp add ghcr-io-liohtml-matomo-mcp-v0-1-3 -- docker run -i --rm ghcr.io/liohtml/matomo-mcp:v0.1.3codex mcp add ghcr-io-liohtml-matomo-mcp-v0-1-3 -- docker run -i --rm ghcr.io/liohtml/matomo-mcp:v0.1.3amp mcp add ghcr-io-liohtml-matomo-mcp-v0-1-3 -- docker run -i --rm ghcr.io/liohtml/matomo-mcp:v0.1.3{
"mcpServers": {
"ghcr-io-liohtml-matomo-mcp-v0-1-3": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/liohtml/matomo-mcp:v0.1.3"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ghcr-io-liohtml-matomo-mcp-v0-1-3": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/liohtml/matomo-mcp:v0.1.3"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"ghcr-io-liohtml-matomo-mcp-v0-1-3","command":"docker","args":["run","-i","--rm","ghcr.io/liohtml/matomo-mcp:v0.1.3"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"ghcr-io-liohtml-matomo-mcp-v0-1-3": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/liohtml/matomo-mcp:v0.1.3"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"ghcr-io-liohtml-matomo-mcp-v0-1-3": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/liohtml/matomo-mcp:v0.1.3"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"ghcr-io-liohtml-matomo-mcp-v0-1-3": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/liohtml/matomo-mcp:v0.1.3"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"ghcr-io-liohtml-matomo-mcp-v0-1-3": {
"type": "local",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/liohtml/matomo-mcp:v0.1.3"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"ghcr-io-liohtml-matomo-mcp-v0-1-3": {
"command": {
"path": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/liohtml/matomo-mcp:v0.1.3"
]
}
}
}
}Add to your Zed `settings.json`.
docker run -i --rm ghcr.io/liohtml/matomo-mcp:v0.1.3Run `goose configure`, choose **Add Extension β Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 14 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint β no local install
Version history
| Versions | Published |
|---|---|
| 0.1.3Latest | Jul 17, 2026 |
| 0.1.2 | Jul 17, 2026 |