rybbit-mcp
Exposes Rybbit Analytics as MCP tools for querying site traffic, page views, visitor sessions, and live visitor counts through natural language.
README
rybbit-mcp
An MCP server that exposes Rybbit Analytics as tools for Claude (or any MCP-compatible client). Ask Claude things like:
- "What's the traffic overview for my site this week?"
- "What are the top 10 pages by visits this month?"
- "How many people are on the site right now?"
- "Where is my traffic coming from, by country?"
- "Show me the most recent sessions from mobile users."
It works against both Rybbit Cloud (app.rybbit.io) and self-hosted Rybbit instances.
Tools
| Tool | Description |
|---|---|
rybbit_list_sites |
List organizations and sites (with their site IDs) |
rybbit_get_site |
Get config/details for one site |
rybbit_get_overview |
Sessions, pageviews, users, bounce rate, duration for a time range |
rybbit_get_overview_timeseries |
Same metrics bucketed over time (for trend charts) |
rybbit_get_breakdown |
Top pages, referrers, countries, browsers, devices, UTM params, etc. |
rybbit_get_live_visitors |
Current active visitor count |
rybbit_list_sessions |
Paginated list of visitor sessions |
rybbit_get_session |
Full detail + event list for one session |
rybbit_get_session_locations |
Aggregated session geolocation, for mapping |
This covers Rybbit's Overview and Sessions API families. The same client/tool pattern can be extended to Events, Users, Goals, Funnels, Performance, and Errors — see Extending below.
Setup
1. Get a Rybbit API key
In your Rybbit dashboard: Settings → Account → API Keys → Create.
Self-hosted instances have no rate limits. Rybbit Cloud rate-limits API keys per your plan (Standard: 20 req/min, Pro: 200 req/min); Free/Basic plans don't get API key access.
2. Build the server
git clone https://github.com/<your-username>/rybbit-mcp.git
cd rybbit-mcp
npm install
npm run build
This produces build/index.js.
3. Configure your MCP client
Claude Desktop / Claude Code — add to your MCP config (claude_desktop_config.json or .claude/settings.json):
{
"mcpServers": {
"rybbit": {
"command": "node",
"args": ["/absolute/path/to/rybbit-mcp/build/index.js"],
"env": {
"RYBBIT_URL": "https://app.rybbit.io",
"RYBBIT_API_KEY": "your-api-key-here"
}
}
}
}
If you self-host Rybbit, set RYBBIT_URL to your instance's base URL instead (e.g. https://analytics.yourdomain.com).
Restart Claude Desktop / reload Claude Code, and the rybbit_* tools should appear.
Deploying to CapRover (or Docker)
This MCP server supports Server-Sent Events (SSE) for remote clients over HTTP. This is perfect for deploying to a platform like CapRover so that a remote AI agent can access the tools.
- Create a new App in your CapRover dashboard (e.g.,
rybbit-mcp). - Set the Environment Variables in CapRover:
RYBBIT_URLRYBBIT_API_KEYPORT=3000(Optional, defaults to 3000)
- Under the Deployment tab, deploy using the Captain Definition or simply push this repository via the CapRover CLI. This repository contains a
Dockerfilethat CapRover will automatically detect and build.
Once deployed, the SSE endpoint will be available at:
https://rybbit-mcp.your-caprover-domain.com/sse
Your remote AI agents can connect to this URL via SSEServerTransport instead of stdio.
4. Try it
"Use rybbit to show me an overview of site 123 for the last 7 days" "What are the top pages on my site this month?" "How many live visitors do I have right now?"
Development
npm run watch # recompile on change
npm run inspector # open the MCP Inspector against this server
Extending
Rybbit's API has more endpoint families than this v1 covers (Events, Users, Goals, Funnels, Performance metrics, Errors — see the Rybbit API docs). To add one:
- Add a method to
src/rybbit-client.tscalling the endpoint. - Register a corresponding tool in
src/index.tswithserver.registerTool(...), usingzodfor the input schema. npm run buildand reload your MCP client.
License
MIT
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.