@byterover/umami-mcp
A read-only MCP server for Umami analytics, enabling natural language queries of website stats, traffic trends, events, sessions, and analytics reports.
README
@byterover/umami-mcp
A minimal, read-only Model Context Protocol server for Umami analytics — Cloud or self-hosted.
It exposes a small set of read tools (list sites, stats, time series, top metrics, live visitors) over stdio, so an MCP client such as Grove can let an agent answer questions about your web analytics. It issues no writes — there are no create/update/ delete tools, by design.
Why this exists
Community Umami MCP servers exist but have little usage and aren't reviewed by anyone we trust with an analytics credential. This is byterover's first-party, source-available wrapper: small enough to read end-to-end, read-only, and published with provenance. We dogfood it on our own landing-page analytics.
Install
npx @byterover/umami-mcp
Configure
Pick one mode via environment variables.
Umami Cloud — create a read-only API key at cloud.umami.is (Settings → API keys):
UMAMI_API_KEY=your_api_key
Self-hosted — point at your instance and provide a login:
UMAMI_API_URL=https://umami.example.com
UMAMI_USERNAME=your_username
UMAMI_PASSWORD=your_password
Advanced: UMAMI_API_URL overrides the base host (Cloud default
https://api.umami.is) and UMAMI_API_PATH overrides the path prefix (Cloud
/v1, self-hosted /api).
Use with Grove
Add it to your mcp.json as a stdio server (pin the version; keep the key in
.env via a ${VAR} ref):
{
"mcpServers": {
"umami": {
"command": "npx",
"args": ["-y", "@byterover/umami-mcp@0.1.0"],
"env": { "UMAMI_API_KEY": "${UMAMI_API_KEY}" }
}
}
}
Tools surface in Grove as umami__list_websites, umami__website_stats, etc.
Tools
Thirteen read tools covering essentially all of Umami's analytics reads —
consolidated (one metrics tool spans ~10 dimensions; explore_event_data
folds five endpoints behind a mode), never mirroring the REST API 1:1.
Discovery
| Tool | What it returns |
|---|---|
list_websites |
Websites (id, name, domain) these credentials can see. Start here. |
data_range |
Earliest/latest timestamps with data — call before querying ranges. |
Traffic & trends
| Tool | What it returns |
|---|---|
website_stats |
Pageviews, visitors, visits, bounces, total time (with prior period). |
pageviews_series |
Pageviews/sessions time series, bucketed by hour/day/month/year. |
realtime |
Live activity in the last ~30 min (active visitors, recent views/events). |
Breakdowns & events
| Tool | What it returns |
|---|---|
metrics |
Top values for one dimension (url, referrer, browser, country, event, …); expanded=true adds engagement. |
events_series |
Custom-event time series over a range. |
explore_event_data |
Drill into event properties/values (mode: events / properties / fields / stats / values). |
Sessions & journeys
| Tool | What it returns |
|---|---|
list_sessions |
Individual visitor sessions (paginated, searchable). |
session_detail |
One session's summary + activity log + custom properties. |
Analyses (compute-reads, POST — still read-only)
| Tool | What it returns |
|---|---|
funnel_report |
Conversion funnel across ordered steps (paths/events). |
retention_report |
Return-visitor retention over the range (needs a timezone). |
journey_report |
Common navigation paths between a start and (optional) end step. |
Range tools accept ISO startAt/endAt; report tools accept ISO
startDate/endDate (e.g. 2026-07-01). Omit them for the last 7 days.
Develop
pnpm install
pnpm build # tsc → dist/
pnpm typecheck
pnpm test # keyless, network-free
pnpm lint
License
Elastic License 2.0 — © byterover.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.