Vercel MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Vercel MCP or direct API to search documentation, list projects, create deployments, and fetch deployment logs through natural language.

Vercel MCP logoVercel MCP
Dcr Oauth

Vercel MCP is Vercel's hosted MCP server for querying documentation and managing projects and deployments. It provides a single endpoint to inspect deployments, view logs, and access project metadata.

37 Tools

Try Vercel MCP now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Vercel MCP
Try asking
TOOLS

Supported Tools

Every Vercel MCP action and event your agent gets out of the box.

Add toolbar reaction

Add an emoji reaction to a message in a toolbar thread.

Buy addon

Executes a Vercel add-on purchase (currently only "siem"), by integer quantity, previously quoted by get_purchase_quote — quoting first is REQUIRED; this tool rejects un-quoted calls.

Buy credits

Executes a prepaid Vercel credits purchase (v0, AI Gateway, or Vercel Agent) previously quoted by get_purchase_quote — quoting first is REQUIRED; this tool rejects un-quoted calls.

Buy domain

Executes a single-domain registration previously quoted by get_purchase_quote (product:domain) — quoting first is REQUIRED; this tool rejects un-quoted calls.

Buy pro

Executes a Vercel Pro upgrade previously quoted by get_purchase_quote — quoting first is REQUIRED; this tool rejects un-quoted calls.

Change toolbar thread resolve status

Change the resolve status of a toolbar thread.

Check domain availability and price

Check if domain names are available for purchase and get pricing information

Create git project

Preferred when the intended source is pushed to an accessible remote repository's production branch.

Deploy to vercel

Deploy files directly when no usable remote git repository exists or the user explicitly requests a manual file deployment.

Edit toolbar message

Edit an existing message in a toolbar thread.

Get access to vercel url

Creates a temporary shareable link that bypasses authentication for protected Vercel deployments.

Get agent run

Get detailed metadata for a single Agent Run from an eve agent, including events, workflow metadata, usage, and subagent breakout data.

Get agent run trace

Get the trace for a single Agent Run from an eve agent, including turns, messages, reasoning, tool calls, token usage, and tool input/output when available.

Get deployment

Get a specific deployment by ID or URL.

Get deployment build logs

Get the build logs for a deployment by ID or URL, to investigate why a build failed.

Get domain order

Get the status of a domain purchase order returned by buy_domain, to confirm whether the registration completed.

Get git deployment context

Lists every Vercel team authorized for the user, including its plan and linked Git projects.

Get project

Get a specific project in Vercel

Get project deployment protection

Get the effective password protection, Vercel Authentication, and Trusted IP settings for a Vercel project.

Get purchase quote

Read-only price quote for a Vercel purchase.

Get runtime errors

Get grouped runtime error clusters for a project (error name, occurrence count, affected routes, sample messages, first/last seen).

Get runtime logs

Get runtime logs for a project or deployment.

Get toolbar thread

Get a specific toolbar thread by ID, including all messages and context.

Get web analytics

Query Web Analytics for a Vercel project.

Import-claude-design-from-url

Import a design into Vercel from a publicly fetchable URL.

List agent run projects

List projects in a Vercel team that have Agent Runs observability data for agents built with the eve framework, with run counts and average duration rollups.

List agent runs

List Agent Runs for a Vercel project.

List deployments

List all deployments for a project

List projects

List all Vercel projects for a user (with a max of 50).

List teams

List the user's teams.

List toolbar threads

List Vercel toolbar comment threads for a team.

Pause project

Pause a Vercel project.

Reply to toolbar thread

Add a reply message to an existing toolbar thread.

Search vercel documentation

Search the Vercel documentation.

Unpause project

Unpause a Vercel project so its production deployment can resume serving traffic and consuming metered resources.

Update project deployment protection

Partially update password protection, Vercel Authentication, and Trusted IPs for a Vercel project.

Web fetch vercel url

Fetches a Vercel deployment URL and returns the response.

SETUP GUIDE

Connect Vercel MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for Vercel MCP
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect Vercel MCP API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Vercel MCP Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'YOUR_SPECIFIC_PROMPT_HERE'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Vercel MCP actions with your Agent

Why Use Composio?

AI Native Vercel MCP Integration

  • Supports both Vercel MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Vercel MCP data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Vercel MCP access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Vercel MCP
  • Scoped, least privilege access to Vercel MCP resources
  • Full audit trail of agent actions to support review and compliance
FRAMEWORKS

Use Vercel MCP with any AI Agent Framework

Choose a Framework you want to connect Vercel MCP with

FAQ

Frequently asked questions

Yes, Vercel MCP requires you to configure your own Dcr Oauth credentials. Once set up, Composio handles secure credential storage and management for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Vercel MCP.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Vercel MCP tool your agent needs.Free to start.

Start building