Hey there! Let's talk about bringing analytics data right into your conversations β because that's what this project is all about. It's a Model Context Protocol (MCP) server that lets you chat with your Plausible Analytics data as naturally as asking a colleague "how's the website doing?"
The hardest thing about analytics dashboards is that they're stuck in the old paradigm of clicking through filters and dimensions. We're living in the future now β let's make our analytics data as accessible as asking a question.
This MCP server bridges the gap between Plausible's powerful analytics API and the way we naturally think about our website stats. Want to know your most visited pages? Or where your traffic is coming from? Just ask!
- π€ Natural interaction with your Plausible Analytics data
- π Get insights about traffic, visitors, and engagement
- π Break down stats by country, device, or any dimension you care about
- π Secure API key handling with 1Password integration
- π― Type-safe implementation with TypeScript and Zod
Here's what you can do β and yes, these are actual queries that work:
# Basic Questions
> What were my most visited pages last week?
{
"site_id": "example.com",
"metrics": ["pageviews"],
"dimensions": ["event:page"],
"date_range": "7d",
"limit": 10
}
> Where's my traffic coming from?
{
"site_id": "example.com",
"metrics": ["visitors"],
"dimensions": ["visit:source"],
"date_range": "30d"
}
> Show me visitor trends by country
{
"site_id": "example.com",
"metrics": ["visitors"],
"dimensions": ["visit:country"],
"date_range": "month"
}
# Content Performance
> Which blog posts have the highest bounce rate?
{
"site_id": "example.com",
"metrics": ["bounce_rate"],
"dimensions": ["event:page"],
"filters": [["contains", "event:page", ["/blog"]]],
"date_range": "30d"
}
> What's the average time spent on documentation pages?
{
"site_id": "example.com",
"metrics": ["visit_duration"],
"dimensions": ["event:page"],
"filters": [["contains", "event:page", ["/docs"]]],
"date_range": "7d"
}
# Traffic Analysis
> Show me mobile vs desktop traffic trends
{
"site_id": "example.com",
"metrics": ["visitors", "pageviews"],
"dimensions": ["visit:device"],
"date_range": "30d"
}
> Which browsers do my visitors use?
{
"site_id": "example.com",
"metrics": ["visitors"],
"dimensions": ["visit:browser"],
"date_range": "30d"
}
# Marketing Insights
> How's our social media traffic performing?
{
"site_id": "example.com",
"metrics": ["visitors", "bounce_rate"],
"dimensions": ["visit:source"],
"filters": [["is", "visit:source", ["Twitter", "LinkedIn", "Facebook"]]],
"date_range": "30d"
}
> Which UTM campaigns are driving the most engagement?
{
"site_id": "example.com",
"metrics": ["visitors", "visit_duration"],
"dimensions": ["visit:utm_campaign"],
"date_range": "month"
}
# Geographic Analysis
> Show me traffic from European cities
{
"site_id": "example.com",
"metrics": ["visitors"],
"dimensions": ["visit:city"],
"filters": [["is", "visit:country", ["GB", "DE", "FR", "ES", "IT"]]],
"date_range": "30d"
}
# Time-Based Analysis
> How does traffic vary throughout the day?
{
"site_id": "example.com",
"metrics": ["visitors"],
"dimensions": ["hour"],
"date_range": "day"
}
# Complex Queries
> Show me popular blog posts from mobile users in the US
{
"site_id": "example.com",
"metrics": ["pageviews", "visit_duration"],
"dimensions": ["event:page"],
"filters": [["and", [
["contains", "event:page", ["/blog"]],
["is", "visit:device", ["mobile"]],
["is", "visit:country", ["US"]]
]]],
"date_range": "30d"
}
> Which pages have high engagement from social media?
{
"site_id": "example.com",
"metrics": ["visit_duration", "views_per_visit"],
"dimensions": ["event:page"],
"filters": [["is", "visit:source", ["Twitter", "LinkedIn", "Facebook"]]],
"date_range": "30d"
}
These examples just scratch the surface β you can combine metrics, dimensions, and filters in countless ways to get exactly the insights you need. The beauty is in how natural it feels to ask these questions and get immediate answers.
First things first, let's get you set up:
pnpm install
You've got two ways to handle your Plausible API key β choose what works for you:
- Create a
.env
file:
PLAUSIBLE_API_KEY=your_api_key_here
PLAUSIBLE_API_URL=https://plausible.io/api/v2
- Or use 1Password (my preferred way): Store your key at "op://Development/plausible api/notesPlain"
Gets you a list of all your Plausible sites. Simple but useful when you're just getting started.
This is where the magic happens. Think of it as your analytics Swiss Army knife:
visitors
- Unique visitors (the real people)pageviews
- Total page loadsbounce_rate
- One-and-done visitsvisit_duration
- How long people stick aroundviews_per_visit
- Pages per session- And more!
Break it down by:
- Pages (
event:page
) - Traffic sources (
visit:source
) - Countries (
visit:country
) - Devices (
visit:device
) - Time periods (minute, hour, day, week, month)
Look at:
- Last 24 hours (
day
) - Last N days (
7d
,30d
) - This month (
month
) - Last N months (
6mo
,12mo
) - Custom date ranges
Filter your data like a pro:
// Just Chrome users
{"filters": [["is", "visit:browser", ["Chrome"]]]}
// Blog traffic only
{"filters": [["contains", "event:page", ["/blog"]]]}
// Traffic from specific countries
{"filters": [["is", "visit:country", ["US", "GB", "CA"]]]}
// Complex stuff - Chrome users from the US
{"filters": [["and", [
["is", "visit:browser", ["Chrome"]],
["is", "visit:country", ["US"]]
]]]}
We're pushing this to the next level. On the roadmap:
- Even smarter query handling
- Better response formatting
- More examples of common analytics questions
- Comprehensive error handling
- Performance optimizations
Jump in and help us figure it out:
# Build it
pnpm build
# Run it
pnpm start
- 600 requests per hour (that's the Plausible limit)
- Real-time data, no caching
- Snappy response times
MIT - because sharing is caring!
The analytics world is transforming from dashboards and SQL queries to natural conversations about your data. We're figuring it out as we go, but that's what makes it exciting. Let's make analytics as accessible as asking a question β because that's where this is all heading.