A lean MCP Server for Umami
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"umami": {
"env": {
"UMAMI_URL": "https://your-umami-instance.com",
"UMAMI_PASSWORD": "your-password",
"UMAMI_USERNAME": "your-username"
},
"command": "~/go/bin/umami-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Connect your Umami Analytics to any MCP client - Claude Desktop, VS Code, Cursor, Windsurf, Zed, Smithery, and more.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Give me a comprehensive analytics report for my website over the last 30 daysProvides a comprehensive analytics report for a website over the last 30 days
Which pages are getting the most traffic this month? Show me the top 10Shows the top 10 pages getting the most traffic this month
Analyze my website's traffic patterns - when do I get the most visitors?Analyzes website traffic patterns to identify peak visitor times
Where are my visitors coming from? Break it down by country and cityBreaks down visitor origins by country and city
What devices and browsers are my users using?Shows device and browser statistics for users
Show me the user journey - what pages do visitors typically view in sequence?Displays the typical user journey showing page sequences
How many people are on my website right now? What pages are they viewing?Shows real-time visitor count and current page views
Is my website experiencing any issues? Check if traffic has dropped significantlyMonitors for significant traffic drops or issues
Which blog posts should I update? Show me articles with declining trafficIdentifies blog posts with declining traffic that need updating
How did my recent email campaign perform? Track visitors from the campaign UTMTracks email campaign performance using UTM parameters
Compare traffic from different social media platformsCompares traffic sources across different social media platforms
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in analytics
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
MCP server for Google Lighthouse performance metrics
MCP Security Weekly
Get CVE alerts and security updates for Umami Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Connect your Umami Analytics to any MCP client - Claude Desktop, VS Code, Cursor, Windsurf, Zed, Smithery, and more.
Get the latest release for your platform from Releases
docker run -i --rm \
-e UMAMI_URL="https://your-instance.com" \
-e UMAMI_USERNAME="username" \
-e UMAMI_PASSWORD="password" \
ghcr.io/macawls/umami-mcp-server
go install github.com/Macawls/umami-mcp-server@latest
Installs to ~/go/bin/umami-mcp-server (or $GOPATH/bin)
Pick one of the two approaches below based on your preference.
A hosted instance is available at https://umami-mcp.macawls.dev/mcp. Connect directly from any MCP client that supports HTTP transport — no binary or Docker needed.
Credentials are passed via X-Umami-* headers on the initialize request.
Add to your config (%APPDATA%\Claude\claude_desktop_config.json on Windows, ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"umami": {
"type": "http",
"url": "https://umami-mcp.macawls.dev/mcp",
"headersHelper": "echo X-Umami-Host: https://your-instance.com && echo X-Umami-Username: admin && echo X-Umami-Password: pass"
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"umami": {
"type": "http",
"url": "https://umami-mcp.macawls.dev/mcp",
"headers": {
"
... [View full README on GitHub](https://github.com/Macawls/umami-mcp-server#readme)