All integrations

Vercel

ConnectionMCP

Manage Vercel projects, deployments, and logs through Vercel's MCP server.

Read the full connection docs

Install

Connections live under agent/connections/. Auth is brokered by Vercel Connect, so install the framework and the Connect SDK:

bash
npm install eve@latest @vercel/connect

Quick start

Create agent/connections/vercel.ts. The connection name is derived from the filename:

ts
// agent/connections/vercel.tsimport { connect } from "@vercel/connect/eve";import { defineMcpClientConnection } from "eve/connections";
export default defineMcpClientConnection({  url: "https://mcp.vercel.com",  description: "Vercel: manage projects and deployments, inspect logs, and search documentation.",  auth: connect("vercel"),});

Connect owns the OAuth flow, and each end-user authorizes in their own browser before their first tool call.

Configure

Link your project, create the connector, and pull OIDC locally:

bash
vercel linkvercel connect create vercel --name vercelvercel env pull

When the Connect form asks for a token authentication method, select None. Vercel MCP completes OAuth when the agent first calls an authenticated tool.

See the Connections docs for principal types, headers, approval, and protocol-specific filters.