Menu

Tools

Last updated September 24, 2025

The Vercel MCP server provides MCP tools that let AI assistants search documentation, manage projects, view deployments, and more.

To enhance security, enable human confirmation for tool execution and exercise caution when using Vercel MCP alongside other servers to prevent prompt injection attacks.

Search Vercel documentation for specific topics and information.

ParameterTypeRequiredDefaultDescription
topicstringYes-Topic to focus the search on (e.g., 'routing', 'data-fetching')
tokensnumberNo2500Maximum number of tokens to include in the result

Sample prompt: "How do I configure custom domains in Vercel?"

List all teams that include the authenticated user as a member.

Sample prompt: "Show me all the teams I'm part of"

List all Vercel projects associated with a user.

ParameterTypeRequiredDefaultDescription
teamIdstringYes-The team ID to list projects for. Alternatively the team slug can be used. Team IDs start with 'team_'. Can be found by reading .vercel/project.json (orgId) or using the list_teams tool.

Sample prompt: "Show me all projects in my personal account"

Get detailed information about a specific project including framework, domains, and latest deployment.

ParameterTypeRequiredDefaultDescription
projectIdstringYes-The project ID to get details for. Alternatively the project slug can be used. Project IDs start with 'prj_'. Can be found by reading .vercel/project.json (projectId) or using list_projects.
teamIdstringYes-The team ID to get project details for. Alternatively the team slug can be used. Team IDs start with 'team_'. Can be found by reading .vercel/project.json (orgId) or using list_teams.

Sample prompt: "Get details about my next-js-blog project"

List deployments associated with a specific project with creation time, state, and target information.

ParameterTypeRequiredDefaultDescription
projectIdstringYes-The project ID to list deployments for
teamIdstringYes-The team ID to list deployments for
sincenumberNo-Get deployments created after this timestamp
untilnumberNo-Get deployments created before this timestamp

Sample prompt: "Show me all deployments for my blog project"

Get detailed information for a specific deployment including build status, regions, and metadata.

ParameterTypeRequiredDefaultDescription
idOrUrlstringYes-The unique identifier or hostname of the deployment
teamIdstringYes-The team ID to get the deployment for. Alternatively the team slug can be used. Team IDs start with 'team_'. Can be found by reading .vercel/project.json (orgId) or using list_teams.

Sample prompt: "Get details about my latest production deployment for the blog project"

Get the build logs of a deployment by deployment ID or URL. You can use this to investigate why a deployment failed.

ParameterTypeRequiredDefaultDescription
idOrUrlstringYes-The unique identifier or hostname of the deployment
limitnumberNo100Maximum number of log lines to return
teamIdstringYes-The team ID to get the deployment logs for. Alternatively the team slug can be used. Team IDs start with 'team_'. Can be found by reading .vercel/project.json (orgId) or using list_teams.

Sample prompt: "Show me the build logs for the failed deployment"

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

ParameterTypeRequiredDefaultDescription
namesarrayYes-Array of domain names to check availability for (e.g., ['example.com', 'test.org'])

Sample prompt: "Check if mydomain.com is available"

Purchase a domain name with registrant information.

ParameterTypeRequiredDefaultDescription
namestringYes-The domain name to purchase (e.g., example.com)
expectedPricenumberNo-The price you expect to be charged for the purchase
renewbooleanNotrueWhether the domain should be automatically renewed
countrystringYes-The country of the domain registrant (e.g., US)
orgNamestringNo-The company name of the domain registrant
firstNamestringYes-The first name of the domain registrant
lastNamestringYes-The last name of the domain registrant
address1stringYes-The street address of the domain registrant
citystringYes-The city of the domain registrant
statestringYes-The state/province of the domain registrant
postalCodestringYes-The postal code of the domain registrant
phonestringYes-The phone number of the domain registrant (e.g., +1.4158551452)
emailstringYes-The email address of the domain registrant

Sample prompt: "Buy the domain mydomain.com"

Create a temporary shareable link that grants access to protected Vercel deployments.

ParameterTypeRequiredDefaultDescription
urlstringYes-The full URL of the Vercel deployment (e.g., 'https://myapp.vercel.app')

Sample prompt: "myapp.vercel.app is protected by auth. Please create a shareable link for it"

Fetch content directly from a Vercel deployment URL (with authentication if required).

ParameterTypeRequiredDefaultDescription
urlstringYes-The full URL of the Vercel deployment including the path (e.g., 'https://myapp.vercel.app/my-page')

Sample prompt: "Make sure the content from my-app.vercel.app/api/status looks right"

Instructs the LLM to use Vercel CLI commands with --help flag for information.

ParameterTypeRequiredDefaultDescription
commandstringNo-Specific Vercel CLI command to run
actionstringYes-What you want to accomplish with Vercel CLI

Sample prompt: "Help me deploy this project using Vercel CLI"

Deploy the current project to Vercel.

Sample prompt: "Deploy this project to Vercel"


Was this helpful?

supported.