Clamp Analytics MCP Server
OfficialThe Clamp Analytics MCP Server gives AI assistants read access to website analytics data via the Model Context Protocol, enabling natural language queries across traffic, behavior, and conversion metrics.
Core Analytics (All Plans)
Traffic Overview: Pageviews, unique visitors, sessions, bounce rate, and average session duration with period-over-period comparison; filterable by path, UTM source/campaign
Top Pages: Most visited pages ranked by pageviews and visitor counts
Top Referrers: Traffic sources by referrer hostname with channel classification (organic search, direct, social, paid, email, referral)
Geographic Insights: Visitor and pageview counts by country (ISO codes) and city, with country filtering
Device & Technology: Breakdown by device type (desktop/mobile/tablet), browser, or operating system
Custom Events: Count events, filter by name or property key/value, group by property, and filter by UTM parameters
Timeseries: Event trends over time with automatic or manual granularity (hourly, daily, weekly, monthly)
Pro Plans Only
Conversion Funnels: Create and evaluate multi-step funnels (2–10 steps) with step-by-step conversion rates; filter saved funnels by country, channel, device, and UTM parameters
Metric Alerts: Automated alerts for metric changes (drops, increases, or threshold crossings) on specific pages or site-wide
Pre-built Prompt Workflows
weekly_report: Traffic summary with top pages, referrers, countries, and one actionable insighttraffic_diagnosis: Root-cause analysis for traffic changes across channels, countries, devices, and pagesconversion_audit: Funnel drop-off analysis with cohort segmentationchannel_breakdown: Compare traffic quality across sources by volume and engagementpage_performance: Deep-dive for a single page including trends, referrers, device split, and site average comparison
Compatible with Claude Desktop, VS Code Copilot, Cursor, Windsurf, Cline, and any MCP client.
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., "@Clamp Analytics MCP Servershow me traffic trends for the last 30 days"
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.
@clamp-sh/mcp
MCP server for Clamp analytics. Gives your AI assistant read access to pageviews, visitors, referrers, countries, cities, devices, custom events, and conversion funnels. Pro plans can create funnels and set up metric alerts.
Works with any MCP client: Claude Desktop, VS Code Copilot, Cursor, Windsurf, Cline, or anything that speaks the Model Context Protocol.
Setup
VS Code / Copilot
Add to .vscode/mcp.json in your project:
{
"servers": {
"clamp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@clamp-sh/mcp"],
"env": {
"CLAMP_API_KEY": "sk_proj..."
}
}
}
}Claude Code
claude mcp add clamp -- npx -y @clamp-sh/mcpThen set your API key:
export CLAMP_API_KEY="sk_proj..."Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"clamp": {
"command": "npx",
"args": ["-y", "@clamp-sh/mcp"],
"env": {
"CLAMP_API_KEY": "sk_proj..."
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"clamp": {
"command": "npx",
"args": ["-y", "@clamp-sh/mcp"],
"env": {
"CLAMP_API_KEY": "sk_proj..."
}
}
}
}API key
Get your API key from the Clamp dashboard under Settings > API Keys. Keys are scoped to a project and start with sk_proj.
Tools
Free (all plans)
Tool | What it does |
| Pageviews, visitors, sessions, bounce rate, avg duration. Period comparison included. |
| Most visited pages ranked by pageviews. |
| Traffic sources with channel classification (organic_search, direct, referral, paid, email, organic_social). |
| Visitors by country (ISO 3166-1 alpha-2 codes). |
| Visitors by city. Optionally filter by country. |
| Breakdown by device type, browser, or OS. |
| Custom event counts with property filtering and grouping. |
| Event counts over time with automatic granularity. |
Pro
Tool | What it does |
| Define and immediately evaluate a multi-step conversion funnel. |
| Retrieve a funnel with cohort filters (country, channel, device, UTM). |
| Set up metric alerts (e.g. "visitors drops_by 30% over 7d"). |
Common parameters
period — "today", "yesterday", "7d", "30d", "90d", or a custom range as "YYYY-MM-DD:YYYY-MM-DD". Defaults to "30d".
limit — Max rows returned, 1-50. Defaults to 10.
Filters — Most tools accept pathname, utm_source, utm_campaign, and referrer_host. Referrers accept channel. Funnels accept cohort filters: country, channel, device_type, utm_source, utm_campaign, referrer_host.
referrer_host — Filter results to visitors from a specific source. Must match the value returned by get_top_referrers exactly (e.g. "news.ycombinator.com", "twitter.com", "github.com"). Works on overview, top pages, events, timeseries, and funnels.
Prompts
Pre-built analytics workflows the AI can follow. Each prompt tells the model which tools to call, in what order, and how to present the results.
Prompt | What it produces |
| Traffic summary, top pages, referrers, countries, one actionable insight. |
| Root-cause analysis for traffic changes. Drills into channels, countries, devices, pages. |
| Funnel drop-off analysis with cohort segmentation. |
| Traffic quality comparison across sources (volume vs engagement). |
| Deep-dive on a single page: trends, referrers, devices, engagement vs site average. |
Examples
Traffic overview
"How's my traffic this week?"
Calls get_overview with period="7d". Returns pageviews, visitors, sessions, bounce rate, avg duration, and comparison to the previous week.
"What's the bounce rate on /pricing?"
Calls get_overview with pathname="/pricing". Returns metrics for that single page, including comparison to the prior period.
"Show me traffic trends for the last 90 days"
Calls get_timeseries with period="90d". Returns daily counts over the full window.
Sources and geography
"Where are my visitors coming from?"
Calls get_top_referrers. Returns referrer hostnames with channel classification (organic_search, direct, referral, paid, email, organic_social).
"Show me only organic search traffic to /blog"
Calls get_top_referrers with channel="organic_search" and pathname="/blog".
"Which countries send the most traffic?"
Calls get_countries. Returns ISO country codes with visitor and pageview counts.
"Which cities in Germany have the most visitors?"
Calls get_cities with country="DE". Returns city names with visitor and pageview counts.
"Which pages did Hacker News visitors read?"
Calls get_top_pages with referrer_host="news.ycombinator.com". Returns only pages viewed by traffic from HN.
"How's traffic from Twitter trending?"
Calls get_timeseries with referrer_host="twitter.com". Returns the pageview curve for visitors from a single source.
Devices
"What's the mobile vs desktop split?"
Calls get_devices with group_by="device_type".
"Which browsers are my visitors using?"
Calls get_devices with group_by="browser".
Custom events
"How many signups happened this month?"
Calls get_events with name="signup" and period="30d".
"Break down signups by plan"
Calls get_events with name="signup" and group_by="plan". Returns counts per property value (e.g. free: 42, pro: 18, growth: 7).
"How many signups came from the spring campaign?"
Calls get_events with name="signup" and utm_campaign="spring-launch".
Funnels (Pro)
Funnels let you track multi-step conversion and filter by cohorts: country, channel, device type, and UTM parameters. This is where you answer questions like "how many mobile users from Germany actually signed up?"
"Create a funnel from pricing page to signup to checkout"
Calls create_funnel with steps ["pageview:/pricing", "signup", "checkout_completed"]. Returns step-by-step conversion rates immediately.
"How does the pricing-to-signup funnel convert on mobile?"
Calls get_funnel with name="pricing-to-signup" and device_type="mobile".
"Compare funnel conversion for US vs Germany"
Two calls to get_funnel, one with country="US" and one with country="DE".
"What's the funnel conversion for visitors from Google?"
Calls get_funnel with channel="organic_search".
"How many mobile users from Germany signed up?"
Create a single-step funnel with steps=["signup"] and filter with country="DE" and device_type="mobile". Cohort filtering works on any funnel, including single-event funnels.
Alerts (Pro)
"Alert me if visitors drop by 30% week over week"
Calls create_alert with metric="visitors", condition="drops_by", threshold=30, period="7d".
"Alert me if bounce rate on /pricing goes above 70%"
Calls create_alert with metric="bounce_rate", condition="above", threshold=70, pathname="/pricing".
Workflows
"Run a weekly report"
Follows the weekly_report prompt. Calls overview, top pages, referrers, countries, and timeseries, then synthesizes a structured report with trends and one actionable insight.
"Why did traffic drop last week?"
Follows the traffic_diagnosis prompt. Systematically checks channels, countries, devices, and pages to isolate the root cause.
"Audit our conversion funnel"
Follows the conversion_audit prompt. Analyzes funnel drop-offs, segments by device/country/channel, and identifies the biggest optimization opportunity.
"How is /pricing performing?"
Follows the page_performance prompt. Pulls page-specific metrics, referrers, device split, and compares engagement to the site average.
Environment variables
Variable | Required | Description |
| Yes | Project API key ( |
Latest Blog Posts
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/clamp-sh/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server