
Marketplace
Wire third-party SaaS (databases, auth, storage) into a Vercel deployment with marketplace installs, auto env vars, and unified billing.
Install
npx skills add https://github.com/vercel-labs/vercel-plugin --skill marketplaceWhat is this skill?
- Guidance for discovering, installing, and building Vercel Marketplace integrations
- Auto-provisioned environment variables and unified billing patterns
- `vercel integration` CLI: discover, add, and manage marketplace resources
- integration.json path and bash-pattern triggers for agent retrieval
- Chains to Storage (Neon/Postgres) and Auth (Clerk) when env patterns match
Adoption & trust: 226 installs on skills.sh; 187 GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Azure Deploymicrosoft/azure-skills
Azure Preparemicrosoft/azure-skills
Azure Storagemicrosoft/azure-skills
Azure Validatemicrosoft/azure-skills
Appinsights Instrumentationmicrosoft/azure-skills
Azure Resource Lookupmicrosoft/azure-skills
Journey fit
Primary fit
Marketplace flows center on adding and configuring external services during product construction on Vercel. Discovery, `vercel integration` CLI, and integration.json patterns are integration work—not generic frontend or docs.
Common Questions / FAQ
Is Marketplace safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Marketplace
# Vercel Marketplace You are an expert in the Vercel Marketplace — the integration platform that connects third-party services to Vercel projects with unified billing, auto-provisioned environment variables, and one-click setup. ## Consuming Integrations ### Linked Project Preflight Integration provisioning is project-scoped. Verify the repository is linked before running `integration add`. ```bash # Check whether this directory is linked to a Vercel project test -f .vercel/project.json && echo "Linked" || echo "Not linked" # Link if needed vercel link ``` If the project is not linked, do not continue with provisioning commands until linking completes. ### Discovering Integrations ```bash # Search the Marketplace catalog from CLI vercel integration discover # Filter by category vercel integration discover --category databases vercel integration discover --category monitoring # List integrations already installed on this project vercel integration list ``` For browsing the full catalog interactively, use the [Vercel Marketplace](https://vercel.com/marketplace) dashboard. ### Getting Setup Guidance ```bash # Get agent-friendly setup guide for a specific integration vercel integration guide <name> # Include framework-specific steps when available vercel integration guide <name> --framework <fw> # Examples vercel integration guide neon vercel integration guide datadog --framework nextjs ``` Use `--framework <fw>` as the default discovery flow when framework-specific setup matters. The guide returns structured setup steps including required environment variables, SDK packages, and code snippets — ideal for agentic workflows. ### Installing an Integration ```bash # Install from CLI vercel integration add <integration-name> # Examples vercel integration add neon # Postgres database vercel integration add upstash # Redis / Kafka vercel integration add clerk # Authentication vercel integration add sentry # Error monitoring vercel integration add sanity # CMS vercel integration add datadog # Observability (auto-configures drain) ``` `vercel integration add` is the primary scripted/AI path. It installs to the currently linked project, auto-connects the integration, and auto-runs environment sync locally unless disabled. If the CLI hands off to the dashboard for provider-specific completion, treat that as fallback: ```bash vercel integration open <integration-name> ``` Complete the web step, then return to CLI verification (`vercel env ls` and local env sync check). ### Auto-P