rybbit-super-mcp
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., "@rybbit-super-mcpShow me top pages by bounce rate"
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.
rybbit-super-mcp
Extended MCP server for Rybbit Analytics — 48 tools with full CRUD for funnels, goals, and sites. Query statistics, manage funnels, create goals, and analyze performance directly from Claude Code.
Why?
Instead of switching to the Rybbit dashboard, let the LLM query and manage your analytics directly:
"Create a checkout funnel: homepage → product → cart → order confirmation"
"What's the drop-off rate on the signup funnel?"
"Set up conversion goals for purchases and newsletter signups"
"Delete all test funnels"
"Show me top pages by bounce rate for the last 7 days"
"Which countries drive the most traffic?"
Related MCP server: rybbit-mcp
Quick Start
Installation
git clone https://github.com/Tchoow/rybbit-super-mcp.git
cd rybbit-super-mcp
npm install && npm run buildConfiguration
Add the MCP server to your Claude Code settings (~/.claude/settings.json):
Option 1 — Local path (recommended):
{
"mcpServers": {
"rybbit": {
"command": "node",
"args": ["/absolute/path/to/rybbit-super-mcp/build/index.js"],
"env": {
"RYBBIT_URL": "https://your-rybbit-instance.com",
"RYBBIT_API_KEY": "your-api-key-here",
"RYBBIT_EMAIL": "your-email@example.com",
"RYBBIT_PASSWORD": "your-password"
}
}
}
}API key is used first for all read operations (stateless, fast). For CRUD operations (funnels/goals), the MCP automatically falls back to session auth if the API key returns 403. See Authentication for details.
Option 2 — Via npx (no clone needed):
{
"mcpServers": {
"rybbit": {
"command": "npx",
"args": ["-y", "github:Tchoow/rybbit-super-mcp"],
"env": {
"RYBBIT_URL": "https://your-rybbit-instance.com",
"RYBBIT_API_KEY": "your-api-key-here",
"RYBBIT_EMAIL": "your-email@example.com",
"RYBBIT_PASSWORD": "your-password"
}
}
}
}Features
Category | Tools | Description |
Configuration & Sites | 8 | Server config, list/create/update/delete sites, site details, excluded IPs/countries |
Real-time & Overview | 4 | Live users, overview metrics, time series, session locations |
Metrics & Dimensions | 3 | Metric breakdown by 22 dimensions, retention, page titles |
Sessions | 2 | List sessions with IP filtering, session detail with event timeline |
Users | 5 | List users, user detail, user traits, event breakdown, session count timeline |
Events | 6 | List events, event names, properties, time series, outbound links, event count by type |
Errors | 1 | Error tracking (names, events, timeseries modes) |
Performance | 2 | Core Web Vitals (LCP, CLS, INP, FCP, TTFB) with time series |
Funnels | 7 | List, analyze, step sessions + create, update, delete, batch create |
Goals | 6 | List, goal sessions + create, update, delete, batch create |
Journeys | 1 | User journey/flow analysis |
Organization | 2 | Org event count, check site has data |
Tools (48)
Configuration & Site Management (8)
Tool | Description |
| Get Rybbit server version and configuration |
| List all sites and organizations |
| Look up a site ID by domain name |
| NEW — Get full site config (tracking flags, domain, etc.) |
| Create a new site in an organization |
| Update site tracking settings (IP, errors, replay, etc.) |
| Delete a site permanently |
| NEW — List IPs excluded from tracking |
| NEW — List countries excluded from tracking |
Real-time & Overview (4)
Tool | Description |
| Current live/active user count |
| Aggregated metrics: sessions, pageviews, users, bounce rate |
| Overview metrics as time-series with configurable buckets |
| Geographic session data with coordinates |
Metrics & Dimensions (3)
Tool | Description |
| Breakdown by dimension (browser, country, pathname, UTM, etc.) |
| User retention cohort analysis |
| NEW — Page titles with visit counts and avg time on page |
Sessions (2)
Tool | Description |
| List sessions with filtering, pagination, IP search |
| Session detail with full event timeline |
Users (5)
Tool | Description |
| List users with search, sorting, identified-only filter |
| User detail with traits and activity |
| User trait keys, values, or find users by trait |
| Per-user event count breakdown |
| NEW — Daily session count timeline for a specific user |
Events (6)
Tool | Description |
| Raw event records with filtering |
| All custom event names with counts |
| Property breakdown for a specific event |
| Event counts as time-series |
| Outbound link click tracking |
| NEW — Event counts by type (pageviews, custom, errors, etc.) |
Errors (1)
Tool | Description |
| Error tracking: names, individual events, or timeseries |
Performance (2)
Tool | Description |
| Core Web Vitals with percentiles, optional dimension breakdown |
| Web Vitals trends over time |
Funnels (3 read + 4 CRUD)
Tool | Description |
| List all saved funnels |
| Ad-hoc funnel analysis (without saving) |
| Sessions that reached/dropped at a funnel step |
| NEW — Create and save a funnel |
| NEW — Update a funnel's name or steps |
| NEW — Delete a saved funnel |
| NEW — Create multiple funnels at once |
Goals (2 read + 4 CRUD)
Tool | Description |
| List goals with conversion metrics |
| Sessions that completed a goal |
| NEW — Create a conversion goal |
| NEW — Update a goal |
| NEW — Delete a goal |
| NEW — Create multiple goals at once |
Journeys (1)
Tool | Description |
| User journey/flow analysis with common navigation paths |
Organization & Utilities (2)
Tool | Description |
| NEW — Aggregated event counts across all sites in an org |
| NEW — Check if a site has any recorded events (boolean) |
Common Parameters
Date Ranges
Most analytics tools accept either absolute or relative date ranges:
Absolute:
startDate/endDateinYYYY-MM-DDformatRelative:
pastMinutesStart/pastMinutesEnd(e.g.,pastMinutesStart: 60= last hour)
Filters
[
{ "parameter": "country", "type": "equals", "value": ["US", "FR"] },
{ "parameter": "browser", "type": "not_equals", "value": ["IE"] },
{ "parameter": "pathname", "type": "contains", "value": ["/blog"] }
]Available filter dimensions: browser, operating_system, language, country, region, city, device_type, referrer, hostname, pathname, page_title, querystring, event_name, channel, utm_source, utm_medium, utm_campaign, utm_term, utm_content, entry_page, exit_page, user_id.
Filter types: equals, not_equals, contains, not_contains, regex, not_regex, greater_than, less_than.
Time Buckets
For time-series endpoints: minute, five_minutes, ten_minutes, fifteen_minutes, hour, day, week, month, year.
Pagination
page: Page number (1-indexed)limit: Results per page (max 200)
Authentication
Two modes are supported. API key + email/password is the recommended setup for full access:
Mode | Environment Variables | CRUD Support |
API Key + Email/Password (recommended) |
| All 48 tools (automatic fallback) |
API Key only |
| Read + site config (CRUD may fail on older Rybbit versions) |
Email/Password only |
| All 48 tools |
All modes require RYBBIT_URL — the URL of your Rybbit instance (without trailing slash).
How it works: API key is used first (stateless, fast). If a CRUD request returns 403 and email/password credentials are available, the MCP automatically retries with session auth. This transparent fallback ensures all 48 tools work regardless of the Rybbit server version.
Recommended config (full access):
{
"mcpServers": {
"rybbit": {
"command": "node",
"args": ["/path/to/rybbit-super-mcp/build/index.js"],
"env": {
"RYBBIT_URL": "https://your-rybbit-instance.com",
"RYBBIT_API_KEY": "your-api-key-here",
"RYBBIT_EMAIL": "your-email@example.com",
"RYBBIT_PASSWORD": "your-password"
}
}
}
}E-commerce Examples
PrestaShop Checkout Funnel
"Create a checkout funnel for my PrestaShop store with these steps:
1. Homepage (/)
2. Product Page (/en/*/*.html)
3. Add to Cart (event: add_to_cart)
4. Checkout (/en/order)
5. Purchase Confirmation (/en/order-confirmation)"Conversion Goals (Batch)
Goals use goalType ("path" or "event") and a config object:
"Create these conversion goals for my e-commerce site:
- Purchase: goalType=path, config.pathPattern=/order-confirmation
- Add to Cart: goalType=event, config.eventName=add_to_cart
- Newsletter: goalType=event, config.eventName=newsletter_subscribe
- Contact Form: goalType=path, config.pathPattern=/contact-success
- Account Created: goalType=event, config.eventName=user_registered"Funnel Drop-off Analysis
"Analyze the checkout funnel and show me which step has the highest drop-off.
Then get the sessions that dropped off at that step so I can understand why."Differences from upstream
Feature |
|
|
Total tools | 32 | 48 |
Create funnel | — |
|
Update funnel | — |
|
Delete funnel | — |
|
Batch create funnels | — |
|
Create goal | — |
|
Update goal | — |
|
Delete goal | — |
|
Batch create goals | — |
|
Page titles | — |
|
Site event count | — |
|
Org event count | — |
|
Site has data | — |
|
User session count | — |
|
Site details | — |
|
Excluded IPs | — |
|
Excluded countries | — |
|
Auth priority | API key first | API key first + automatic session fallback on 403 |
LLM instructions | Basic workflow | Full CRUD workflow guide |
Development
npm install # Install dependencies
npm run build # Compile TypeScript
npm run dev # Watch mode (recompile on change)
npm start # Run the compiled serverCredits
Fork of @nks-hub/rybbit-mcp by NKS Hub. Extended by Tchoow / Flowcode.
License
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.
Latest Blog Posts
- 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/Tchoow/rybbit-super-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server