No install? Use cloud.anythingmcp.com directly.
Sign in, install the Vercel Analytics in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Read Vercel Analytics / Speed Insights / Audience data via the Vercel API. 4 tools, Bearer auth.
💡 Niente installazione? Vai direttamente su cloud.anythingmcp.com. Accedi, clicca Connectors → Vercel Analytics, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente
git clone, niente server locale.
Vercel Analytics + Cursor
Read Vercel Analytics / Speed Insights / Audience data via the Vercel API. 4 tools, Bearer auth.
Prerequisiti
Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:
VERCEL_ACCESS_TOKEN
Step 1 — Ottieni le credenziali
com/docs/rest-api).
Setup:
- Sign in to https://vercel.com → top-right avatar → Settings → Tokens → Create Token.
- Pick scope (account-level or team-level). Set
VERCEL_ACCESS_TOKEN. - For team-scoped queries also set
VERCEL_TEAM_ID(visible in Team Settings).
Authentication: Authorization: Bearer ${VERCEL_ACCESS_TOKEN}.
Note: Vercel's Web Analytics + Speed Insights data endpoints went through major changes in 2024-2025. Some endpoints are paywall/plan-gated. The adapter uses the stable public endpoints; some analytics queries require Pro+ plan.
Pagination: cursor-based via until Unix ms (return items older than this).
…(continued in the in-app connector instructions)
Step 2 — Installa l'adapter
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Step 3 — Aggiungi il connettore in Cursor
Cursor legge i server MCP da ~/.cursor/mcp.json. Aggiungi questa voce:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Ottieni la tua MCP API key da AnythingMCP → Profilo → MCP API Keys → Nuova Key.
- Salva il file e riavvia Cursor.
- Apri Cursor → Impostazioni → MCP per verificare che
Vercel Analyticssia presente e "Connected". - Inizia a chattare — tutti gli strumenti di
Vercel Analyticssono ora invocabili.
Tool disponibili
| Tool | What it does |
|---|---|
vercel_analytics_get_user | Return the user the token belongs to |
vercel_analytics_list_projects | List projects in the team / account |
vercel_analytics_get_deployments | List deployments for a project |
vercel_analytics_get_speed_insights | Get Speed Insights (Core Web Vitals) data for a project — requires Vercel Speed Insights enabled on the project + Pro plan |
FAQ
Cursor supporta MCP server personalizzati nel piano free? Sì — MCP è disponibile su Hobby, Pro e Business.
Prossimi passi
Questa guida ti è stata utile?