What it does
Return the HTML <script> snippet for a given site_id.
Example prompts
Ask Claude (or any MCP client connected to mcp-analytics) something like:
Show me the tracking snippet for example.com again.
The client will pick get_tracking_snippet automatically based on the prompt and your account's available sites.
Arguments
| Name | Type | Required | Description / Default |
|---|---|---|---|
site_id |
string | required | Site identifier from list_sites (8-character base32, e.g. 'wjxayhdd'). |
How to call it directly
If you're integrating from your own code rather than a chat client, this is the JSON-RPC payload:
curl -X POST https://mcp-analytics.com/mcp \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_tracking_snippet",
"arguments": {
"site_id": "abc12345"
}
}
}'
Token comes from /settings after you sign up. Replace any required arguments above.
Related tools
get_timeseries: Time-bucketed metric over a period.traffic_class_breakdown: Hit counts and percentages by traffic_class for the period.top_user_agents: Top User-Agent strings with their traffic_class.add_site: Register a new site.breakdown: Breakdown of visits by browser, os, device_type, or country (country empty in MVP).