umami-mcp-server
Provides integration with Umami Analytics, enabling analytics queries (stats, pageviews, metrics, event series, sessions, traffic reports) and admin management of websites, users, and teams on self-hosted instances.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@umami-mcp-servershow me traffic stats for example.com over the last 7 days"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
umami-mcp-server
An MCP server for Umami Analytics. Read-only, works against both Umami Cloud and self-hosted instances, and speaks in ranges like last_month and site names like example.com rather than epoch milliseconds and UUIDs.
Twenty-five tools covering website discovery, traffic stats, time series, ranked breakdowns, custom events, individual sessions, a one-call full report, full admin CRUD for websites/users/teams, a composite client-onboarding tool, and a raw GET escape hatch for anything else in the Umami API.
Admin tools (creating users, teams, and websites; deleting anything) require self-hosted Umami with an admin login or admin API key. Umami Cloud does not expose user or team management via the API, so those tools return a clear error rather than a confusing 404 if pointed at Cloud.
Install
npm install
npm run buildRelated MCP server: Plausible MCP
Configure
Copy .env.example and fill in one of the two auth paths.
Umami Cloud
Create a key under Settings, API keys.
Variable | Required | Notes |
| yes | Your Cloud API key |
| no |
|
Self-hosted
Variable | Required | Notes |
| yes | Root URL of the instance, e.g. |
| either | An API key on the instance |
| either | Login credentials, exchanged for a bearer token and refreshed automatically when it expires |
Both
Variable | Default | Notes |
|
| IANA timezone for day boundaries and time-series buckets, e.g. |
| none | Website ID, name, or domain used when a tool call omits |
Connect it
Claude Desktop or Claude Code
Add to claude_desktop_config.json, or run claude mcp add:
{
"mcpServers": {
"umami": {
"command": "node",
"args": ["/absolute/path/to/umami-mcp-server/dist/index.js"],
"env": {
"UMAMI_API_KEY": "your-key",
"UMAMI_TIMEZONE": "America/New_York",
"UMAMI_DEFAULT_WEBSITE": "example.com"
}
}
}
}For a self-hosted instance, swap in UMAMI_BASE_URL and either the key or the username and password pair.
MCP Inspector
UMAMI_API_KEY=your-key npm run inspectTools
Analytics (read-only)
Tool | What it does |
| List every tracked website, with optional search. Start here when you do not know an ID |
| Website config plus the date range of data actually collected, plus the live visitor count |
| Unique visitors in the last 5 minutes |
| Pageviews, visitors, visits, bounce rate, average visit duration, with period-over-period change |
| Pageviews and sessions bucketed by minute, hour, day, month, or year |
| Ranked breakdown by any dimension. |
| Custom event counts over time, grouped by event name |
| Paginated list of individual anonymous sessions |
| One session plus its page-by-page activity trail |
| Stats and seven breakdowns in a single call. The right tool for "how is the site doing" |
Admin: websites (self-hosted, admin login or key)
Tool | What it does |
| Register a new website and get back its tracking ID and |
| Rename, change domain, set a public share link, and configure every replay/heatmap field: enable flags, sample rates, PII mask level, max recording length, block selector |
| Read the live config Umami is actually serving to the tracker for a website. Ground truth after |
| Destructive. Wipe all collected data, keep the website and tracking ID. Requires |
| Destructive. Delete the website registration and all its data. Requires |
Admin: users (self-hosted, admin login or key)
Tool | What it does |
| Create an internal login |
| List every login on the instance |
| One user's role plus the websites and teams they can access |
| Change username, password, or instance-wide role |
| Destructive. Remove a login. Requires |
Admin: teams (self-hosted, admin login or key)
Tool | What it does |
| Create a team and get its access code |
| List teams with member and website counts |
| Team details plus full member list and roles |
| Websites belonging to a team |
| Rename a team or rotate its access code |
| Join a team as the authenticated user, via access code |
| Add an existing login to a team directly |
| Change a team member's role |
| Destructive. Remove a member from a team. Requires |
| Destructive. Delete a team. Requires |
Provisioning
Tool | What it does |
| One call: create a website, optionally a dedicated team for it, optionally grant an existing user access, optionally set replay/heatmap config from the start. The fast path for setting up a new client |
Escape hatch
Tool | What it does |
| Read-only GET against any Umami endpoint without a dedicated tool |
Every data tool takes response_format: markdown for a readable summary, json for the structured payload. Every destructive tool (reset, delete, remove) takes a required confirm: true argument; the call is rejected without it, and there is no other confirmation step, so treat that argument as the point of no return.
Date ranges
Pass range as any of:
Relative:
30m,24h,7d,4w,3mo,1yNamed:
today,yesterday,this_week,last_week,this_month,last_month,this_year,last_year,mtd,ytd,all_time
Or pass start_date and end_date as YYYY-MM-DD, a full ISO 8601 timestamp, or epoch milliseconds. Explicit dates override range. Day boundaries respect UMAMI_TIMEZONE, or a per-call timezone argument.
Filters
Most tools accept a filters object that segments the query:
{ "country": "US", "device": "mobile", "path": "/pricing" }Supported keys: path, referrer, title, query, browser, os, device, country, region, city, language, hostname, tag, event, distinctId, utmSource, utmMedium, utmCampaign, utmContent, utmTerm, segment, cohort.
Breakdown dimensions
For umami_get_metrics and the breakdowns argument of umami_traffic_report: path, entry, exit, title, query, referrer, channel, domain, country, region, city, browser, os, device, language, screen, event, hostname, tag, distinctId.
Examples
Ask naturally once it is connected:
"How did the site do last month compared to the month before?" →
umami_get_statswithrange=last_month"Give me the full analytics rundown for the last 30 days" →
umami_traffic_report"Which landing page has the worst bounce rate?" →
umami_get_metricswithtype=entry,expanded=true"How many contact form submits this week?" →
umami_get_events_serieswithevent=contact-form-submit"Show me top pages for mobile visitors in Florida" →
umami_get_metricswithtype=path,filters={ device: "mobile", region: "US-FL" }"What did that session actually do on the site?" →
umami_list_sessions, thenumami_get_session"Set up tracking for the new client, its own team, and put jordan on it" →
umami_onboard_clientwithwebsite_name,domain,team_name,grant_user_id"Wipe the test data before this site goes live" →
umami_reset_websitewithconfirm=true
Design notes
Website resolution. Any tool's
websiteargument accepts a UUID, a name, or a domain. Names and domains are matched against a 60-second cached website list, with an explicit ambiguity error rather than a silent wrong guess. Creating, updating, or deleting a website refreshes that cache immediately.Full replay/heatmap config, not just toggles.
umami_update_websiteexposes every field Umami'sreplayConfigaccepts: enable flags, independent sample rates for replay vs. heatmaps, PII mask level, block selector, and max recording duration. Umami's own docs give inconsistent units formaxDuration(one example implies milliseconds, another implies seconds); rather than guess,umami_get_recorder_configreads the same public endpoint the tracker itself calls, so you can confirm the effective value after saving instead of trusting either doc example.Derived metrics. Umami returns raw
bouncesandtotaltimecounts. Bounce rate, views per visit, and average visit duration are computed here so every response is directly readable.Partial failure.
umami_traffic_reportruns its breakdowns in parallel and drops any dimension the instance does not support, naming the skipped ones instead of failing the whole report. This matters because dimension support varies across Umami versions.Destructive ops are opt-in, not confirmed twice.
umami_reset_website,umami_delete_website,umami_delete_user,umami_remove_team_user, andumami_delete_teamall require a literalconfirm: trueargument and fail otherwise. There is no separate "are you sure" round-trip: the tool call itself is the confirmation, so an agent (or a person) should only passconfirm: trueonce they mean it.umami_onboard_clientis best-effort, not transactional. Umami's API has no multi-step transaction support. If team creation succeeds but the website step fails, the team is left in place and the error message says so explicitly, along with what to check next, rather than silently rolling back or hiding the partial state.Escape hatch.
umami_api_getis deliberately GET-only, separate from the admin tools above. It cannot create, modify, reset, or delete anything.Response size. Responses are capped at 25,000 characters with a message pointing at
limit,offset, or a narrower range.
Tests
npm testtest/smoke.mjs stands up a fake Umami API, connects a real MCP client over stdio, and exercises the analytics tools plus their error paths. test/auth.mjs covers the self-hosted login exchange and the token refresh that fires when a cached bearer token goes stale. test/admin.mjs covers website/user/team CRUD, team membership, the composite onboarding tool, and confirms every destructive tool refuses to run without confirm=true.
Verified against
Umami v3 API reference as of August 2026: /websites, /websites/:id, /websites/:id/stats, /pageviews, /metrics, /metrics/expanded, /events/series, /active, /daterange, /sessions, /sessions/:id, /sessions/:id/activity, /websites/:id/reset, /users, /admin/users, /users/:id, /users/:id/websites, /users/:id/teams, /teams, /teams/join, /teams/:id, /teams/:id/users, /teams/:id/users/:userId, /teams/:id/websites. Cloud requests go to https://api.umami.is/v1 with a bearer token; self-hosted requests go to {base}/api. User and team management endpoints only exist on self-hosted instances.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceEnables AI assistants to interact with Umami Analytics for both Cloud and self-hosted instances. It provides tools to retrieve website statistics, visitor metrics, pageview trends, and real-time active user counts.51MIT
- AlicenseBqualityDmaintenanceEnables natural language interaction with Plausible Analytics data to query traffic, visitors, engagement, and more using conversational questions.41MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for Umami Analytics that provides read-only tools to query website stats, events, sessions, reports, and more, enabling natural language analytics queries.262MIT
- AlicenseAqualityBmaintenanceA read-only MCP server for Umami analytics, enabling natural language queries of website stats, traffic trends, events, sessions, and analytics reports.13121Elastic 2.0
Related MCP Connectors
Privacy-first web analytics. Query pageviews, referrers, trends, and AI insights.
Ask your app anything — revenue, errors, read-cost, growth — and get rendered charts back.
AI access to Hitsteps analytics, live visitors, uptime, goals, alerts, and chats.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/arttus/umami-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server