SEO matomo skill

Matomo Reporting API extension.

by AgriciDaniel·MIT license·GitHub ↗

★ 17,394 Stars on the repo·Checked

npx degit AgriciDaniel/claude-seo/extensions/matomo/skills/seo-matomo#main ~/.claude/skills/seo-matomo

SKILL.md · 5.7 KB · names 4 other files — download is this file only · installs the whole folder to ~/.claude/skills/seo-matomo

Files of SEO matomo

Files 1 file
Show the full text112 lines

seo-matomo

Self-hosted analytics surface. Use Matomo as a privacy-first GA4 alternative when you own your analytics data, want zero Google dependency, or operate behind a strict data-residency boundary. The same seo-matomo skill works against Matomo Cloud and self-hosted instances.

Prerequisites

  • Run extensions/matomo/install.sh or install.ps1.
  • A Matomo instance URL (https://analytics.example.com).
  • A Matomo API token_auth with view access on the sites you analyze.
  • (Optional) A default idSite to avoid passing --site-id on every call.

Routing

Command Underlying script
/seo matomo check "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_auth.py --check
/seo matomo organic [site-id] "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py organic --site-id <id>
/seo matomo top-pages "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py top-pages
/seo matomo device "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py device
/seo matomo country "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py country
/seo matomo referrers "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py referrers
/seo matomo keywords "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py keywords

All commands accept --days (default 28), --limit, --site-id, and --json. The site ID falls back to MATOMO_SITE_ID from settings.

When this skill applies

  • The user wants Google-free analytics or has a Matomo instance already configured. Common in EU privacy-first setups, regulated industries, and teams who own their analytics.
  • The user explicitly says "Matomo", "self-hosted analytics", or asks to replace GA4. For Google Search performance use seo-google; this skill is the reporting substitute.
  • The user is migrating from GA4 and wants the same report types (organic trend, landing pages, device / country split, referrer split) sourced from Matomo's Reporting API.

Cross-skill delegation

  • For Google Search Console / CrUX / Indexing, route to seo-google. seo-matomo covers reporting (visits / pages / referrers), not search performance metrics.
  • For AI Overview / GEO citability work, route to seo-geo. Matomo offers no LLM-specific signals.
  • During /seo audit, the orchestrator spawns the seo-matomo agent (analogous to seo-google) whenever "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_auth.py --check succeeds. Both agents can be active simultaneously when the user has both GA4 and Matomo configured.

Self-hosted instance on a private address

Every Matomo request goes through claude-seo's SSRF guard: the instance URL is validated and DNS-pinned, and a redirect off the instance is refused. Private, loopback, and link-local addresses are refused by default. When the user's instance lives on one (http://matomo.internal:8080, http://192.168.1.20, http://localhost:8080), tell them to name it in the CLAUDE_SEO_LOCAL_TARGETS allowlist:

export CLAUDE_SEO_LOCAL_TARGETS="matomo.internal:8080"

Entries are host or host:port, comma-separated, matched exactly. The allowlist covers only the top-level instance URL; redirect targets and every other host stay fail-closed, and cloud metadata addresses are refused even when listed. Never suggest disabling the guard or editing url_safety.py: the allowlist is the supported route. Details in extensions/matomo/docs/MATOMO-SETUP.md and SECURITY.md.

Error Handling

  • Refused by the SSRF guard (error names CLAUDE_SEO_LOCAL_TARGETS): the instance is on a private address that has not been allowlisted. Give the user the exact export line from the error, which already carries the right host:port.
  • Refused redirect: the instance answered a 30x pointing at another host. MATOMO_URL is pointing at a redirector rather than at the Reporting API. Ask the user for the URL their instance actually serves the API from.
  • Missing credentials: report which env vars / config keys are unset and remind the user to run extensions/matomo/install.sh or "${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_auth.py --setup.
  • HTTP 401/403 from Matomo: the token lacks view access for the given site. Verify the token scope in Matomo Administration -> Personal -> Security -> API Tokens. The skill never logs the token.
  • result=error payloads from Matomo (e.g. invalid idSite): surface the message verbatim; do not guess.
  • Connection / SSL / timeout: report the network failure class (ConnectionError, SSLError, timeout) and confirm MATOMO_URL resolves.

Output Formatting

  • Tables for time-series, device, and country data.
  • Critical / High / Medium / Low priority for any cross-skill actions surfaced from Matomo data.
  • Always label the data source as "Matomo Reporting API (live)" to distinguish from GA4, CrUX, or static crawl analysis.
  • For organic keywords, surface the anonymized_share_pct prominently. Many keywords will be "(not provided)" due to browser privacy and Matomo's anonymization rules; this is normal, not a data bug.
1---
2name: seo-matomo
3description: Matomo Reporting API extension. Self-hosted or Matomo Cloud analytics as a GA4 alternative or complement. Organic traffic, landing pages, device / country breakdowns, referrers, search keywords. Triggers on "Matomo", "self-hosted analytics", "analytics ohne Google", "GA4 alternative", "Matomo Reporting", "Piwik".
4metadata:
5 version: "2.4.0"
6compatibility: "Requires a Matomo instance URL and API token in ~/.config/claude-seo/matomo.json (0600), or MATOMO_URL / MATOMO_API_TOKEN / MATOMO_SITE_ID in the environment. Run extensions/matomo/install.sh to configure."
7---
8 
9# seo-matomo
10 
11Self-hosted analytics surface. Use Matomo as a privacy-first GA4 alternative
12when you own your analytics data, want zero Google dependency, or operate
13behind a strict data-residency boundary. The same `seo-matomo` skill works
14against Matomo Cloud and self-hosted instances.
15 
16## Prerequisites
17 
18- Run `extensions/matomo/install.sh` or `install.ps1`.
19- A Matomo instance URL (https://analytics.example.com).
20- A Matomo API `token_auth` with `view` access on the sites you analyze.
21- (Optional) A default `idSite` to avoid passing `--site-id` on every call.
22 
23## Routing
24 
25| Command | Underlying script |
26|---|---|
27| `/seo matomo check` | `"${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_auth.py --check` |
28| `/seo matomo organic [site-id]` | `"${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py organic --site-id <id>` |
29| `/seo matomo top-pages` | `"${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py top-pages` |
30| `/seo matomo device` | `"${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py device` |
31| `/seo matomo country` | `"${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py country` |
32| `/seo matomo referrers` | `"${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py referrers` |
33| `/seo matomo keywords` | `"${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_report.py keywords` |
34 
35All commands accept `--days` (default 28), `--limit`, `--site-id`, and
36`--json`. The site ID falls back to `MATOMO_SITE_ID` from settings.
37 
38## When this skill applies
39 
40- The user wants Google-free analytics or has a Matomo instance already
41 configured. Common in EU privacy-first setups, regulated industries,
42 and teams who own their analytics.
43- The user explicitly says "Matomo", "self-hosted analytics", or asks to
44 replace GA4. For Google Search performance use `seo-google`; this
45 skill is the reporting substitute.
46- The user is migrating from GA4 and wants the same report types
47 (organic trend, landing pages, device / country split, referrer split)
48 sourced from Matomo's Reporting API.
49 
50## Cross-skill delegation
51 
52- For Google Search Console / CrUX / Indexing, route to `seo-google`.
53 `seo-matomo` covers reporting (visits / pages / referrers), not search
54 performance metrics.
55- For AI Overview / GEO citability work, route to `seo-geo`. Matomo
56 offers no LLM-specific signals.
57- During `/seo audit`, the orchestrator spawns the `seo-matomo` agent
58 (analogous to `seo-google`) whenever `"${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_auth.py
59 --check` succeeds. Both agents can be active simultaneously when the
60 user has both GA4 and Matomo configured.
61 
62## Self-hosted instance on a private address
63 
64Every Matomo request goes through claude-seo's SSRF guard: the instance URL
65is validated and DNS-pinned, and a redirect off the instance is refused.
66Private, loopback, and link-local addresses are refused by default. When the
67user's instance lives on one (`http://matomo.internal:8080`,
68`http://192.168.1.20`, `http://localhost:8080`), tell them to name it in the
69`CLAUDE_SEO_LOCAL_TARGETS` allowlist:
70 
71```bash
72export CLAUDE_SEO_LOCAL_TARGETS="matomo.internal:8080"
73```
74 
75Entries are `host` or `host:port`, comma-separated, matched exactly. The
76allowlist covers only the top-level instance URL; redirect targets and every
77other host stay fail-closed, and cloud metadata addresses are refused even
78when listed. Never suggest disabling the guard or editing `url_safety.py`:
79the allowlist is the supported route. Details in
80`extensions/matomo/docs/MATOMO-SETUP.md` and SECURITY.md.
81 
82## Error Handling
83 
84- Refused by the SSRF guard (error names `CLAUDE_SEO_LOCAL_TARGETS`): the
85 instance is on a private address that has not been allowlisted. Give the
86 user the exact export line from the error, which already carries the right
87 `host:port`.
88- Refused redirect: the instance answered a 30x pointing at another host.
89 `MATOMO_URL` is pointing at a redirector rather than at the Reporting API.
90 Ask the user for the URL their instance actually serves the API from.
91- Missing credentials: report which env vars / config keys are unset and
92 remind the user to run `extensions/matomo/install.sh` or
93 `"${CLAUDE_PLUGIN_ROOT}/scripts/claude-seo" run matomo_auth.py --setup`.
94- HTTP 401/403 from Matomo: the token lacks view access for the given
95 site. Verify the token scope in Matomo Administration -> Personal ->
96 Security -> API Tokens. The skill never logs the token.
97- `result=error` payloads from Matomo (e.g. invalid `idSite`): surface
98 the message verbatim; do not guess.
99- Connection / SSL / timeout: report the network failure class
100 (`ConnectionError`, `SSLError`, `timeout`) and confirm
101 `MATOMO_URL` resolves.
102 
103## Output Formatting
104 
105- Tables for time-series, device, and country data.
106- Critical / High / Medium / Low priority for any cross-skill actions
107 surfaced from Matomo data.
108- Always label the data source as "Matomo Reporting API (live)" to
109 distinguish from GA4, CrUX, or static crawl analysis.
110- For organic keywords, surface the `anonymized_share_pct` prominently.
111 Many keywords will be "(not provided)" due to browser privacy and
112 Matomo's anonymization rules; this is normal, not a data bug.

Discussion

Alternatives

Also in SEO & keywordsSee all 403 in Marketing →
Agentic Browsing ReadinessAudit and fix agent readiness: the Lighthouse Agentic Browsing fraction, accessibility tree for agents, robots.txt and Content-Signal for AI agents, WAF treatment of agent traffic, llms.txt, Markdown delivery, ai-catalog.json, /.well-known discovery files, and WebMCP tools. Exclude AI citability and brand signals (seo-geo) and commerce protocol depth (seo-ecommerce).Marketing · MITBacklink Profile AnalysisBacklink profile analysis: referring domains, anchor text distribution, toxic link detection, competitor gap analysis. Works with free APIs (Moz, Bing Webmaster, Common Crawl) and DataForSEO extension. Use when user says backlinks, link profile, referring domains, anchor text, toxic links, link gap, link building, disavow, or backlink audit.Marketing · MIT/setup-cmsConnect a CMS to notfair SEO tools. Guides users through configuring WordPress, Strapi, Contentful, or Ghost — tests the connection, and writes credentials to .env.local. Once set up, seo-analysis automatically cross- references CMS content against Google Search Console data. Use whenever the user says "connect my CMS", "set up WordPress", "configure Strapi", "add Contentful", "connect Ghost", or "CMS setup". Also trigger if the user asks why no CMS data appears in a seo-analysis report.Marketing · MITCore Web Vitals optimizationOptimize Core Web Vitals (LCP, INP, CLS) for better page experience using field and lab evidence. Use when asked to "improve Core Web Vitals", "fix LCP", "reduce CLS", "optimize INP", "page experience optimization", or "fix layout shifts".Marketing · MIT