home / skills / andrelandgraf / fullstackrecipes / vercel-analytics-setup
This skill helps you set up privacy-focused Vercel Web Analytics to track page views, visitors, and events with zero configuration.
npx playbooks add skill andrelandgraf/fullstackrecipes --skill vercel-analytics-setupReview the files below or copy the command above to add this skill to your agents.
---
name: vercel-analytics-setup
description: Add privacy-focused web analytics with Vercel Web Analytics. Track page views, visitors, and custom events with zero configuration.
---
# Vercel Web Analytics
To set up Vercel Web Analytics, refer to the fullstackrecipes MCP server resource:
**Resource URI:** `recipe://fullstackrecipes.com/vercel-analytics-setup`
If the MCP server is not configured, fetch the recipe directly:
```bash
curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/vercel-analytics-setup
```
This skill adds privacy-focused web analytics using Vercel Web Analytics to your TypeScript full-stack app. It provides zero-configuration tracking for page views, unique visitors, and custom events while respecting user privacy and avoiding cookies. The integration is designed for production-ready deployments and works out of the box with common frameworks on Vercel.
The skill injects the Vercel Web Analytics snippet or config into your app and wires basic page-view tracking automatically. It also exposes a minimal API to emit custom events from client or server code. No third-party cookies or personal identifiers are stored; metrics are aggregated and exposed through the Vercel dashboard. If your project uses the recipe registry, the skill fetches the installation recipe automatically or falls back to a direct recipe endpoint.
Do I need to configure cookies or GDPR consent?
No. Vercel Web Analytics is designed to be cookie-free and privacy-focused, reducing the need for cookie consent banners for analytics alone.
Can I track custom events?
Yes. The skill exposes a simple API to emit custom events from client or server code so you can measure conversions and feature usage.
What if my project isn’t on Vercel?
The integration is optimized for Vercel hosting and dashboard metrics. For other hosts, consider a self-hosted privacy-focused analytics solution or review the recipe for adaptation guidance.