Tools

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

NameDescriptionParametersSample prompt
search_documentationSearch Vercel documentation for specific topics and informationtopic (string, required): Topic to focus the documentation search on (e.g., 'routing', 'data-fetching')

tokens (number, optional, default: 2500): Maximum number of tokens to include in the result
"How do I configure custom domains in Vercel?"
NameDescriptionParametersSample prompt
list_teamsList all teams that include the authenticated user as a memberNone"Show me all the teams I'm part of"
list_projectsList all Vercel projects associated with a userteamId (string, required): The team ID to list projects for. Alternatively the team slug can be used. Team IDs start with 'team_'. If you do not know the team ID or slug, it can be found through these mechanism: - Read the file .vercel/project.json if it exists and extract the orgId - Use the list_teams tool"Show me all projects in my personal account"
get_projectRetrieve detailed information about a specific project including framework, domains, and latest deploymentprojectId (string, required): The project ID to get project details for. Alternatively the project slug can be used. Project IDs start with 'prj*'. If you do not know the project ID or slug, it can be found through these mechanism: - Read the file .vercel/project.json if it exists and extract the projectId - Use the list_projects tool

teamId (string, required): The team ID to get project details for. Alternatively the team slug can be used. Team IDs start with 'team*'. If you do not know the team ID or slug, it can be found through these mechanism: - Read the file .vercel/project.json if it exists and extract the orgId - Use the list_teams tool
"Get details about my next-js-blog project"
NameDescriptionParametersSample prompt
list_deploymentsList deployments associated with a specific project with creation time, state, and target informationprojectId (string, required): The project ID to list deployments for

teamId (string, required): The team ID to list deployments for

since (number, optional): Get deployments created after this timestamp

until (number, optional): Get deployments created before this timestamp
"Show me all deployments for my blog project"
get_deploymentRetrieve detailed information for a specific deployment including build status, regions, and metadataidOrUrl (string, required): The unique identifier or hostname of the deployment

teamId (string, required): The team ID to get the deployment events for. Alternatively the team slug can be used. Team IDs start with 'team_'. If you do not know the team ID or slug, it can be found through these mechanism: - Read the file .vercel/project.json if it exists and extract the orgId - Use the list_teams tool
"Get details about my latest production deployment for the blog project"
get_deployment_build_logsGet the build logs of a deployment by deployment ID or URL. Can be used to investigate why a deployment failed. It can work as an infinite stream of logs or as a JSON endpoint depending on the input parametersidOrUrl (string, required): The unique identifier or hostname of the deployment

limit (number, optional, default: 100): Maximum number of log lines to return. Defaults is 100

teamId (string, required): The team ID to get the deployment events for. Alternatively the team slug can be used. Team IDs start with 'team_'. If you do not know the team ID or slug, it can be found through these mechanism: - Read the file .vercel/project.json if it exists and extract the orgId - Use the list_teams tool
"Show me the build logs for the failed deployment"
NameDescriptionParametersSample prompt
check_domain_availability_and_priceCheck if domain names are available for purchase and get pricing informationnames (array, required): Array of domain names to check availability for (e.g., ['example.com', 'test.org'])"Check if mydomain.com is available"
buy_domainPurchase a domain name with registrant informationname (string, required): The domain name to purchase (e.g., example.com)

expectedPrice (number, optional): The price you expect to be charged for the purchase

renew (boolean, optional, default: true): Whether the domain should be automatically renewed

country (string, required): The country of the domain registrant (e.g., US)

orgName (string, optional): The company name of the domain registrant

firstName (string, required): The first name of the domain registrant

lastName (string, required): The last name of the domain registrant

address1 (string, required): The street address of the domain registrant

city (string, required): The city of the domain registrant

state (string, required): The state/province of the domain registrant

postalCode (string, required): The postal code of the domain registrant

phone (string, required): The phone number of the domain registrant (e.g., +1.4158551452)

email (string, required): The email address of the domain registrant
"Buy the domain mydomain.com"
NameDescriptionParametersSample prompt
get_access_to_vercel_urlCreates a temporary shareable link that grants access to protected Vercel deploymentsurl (string, required): The full URL of the Vercel deployment (e.g. 'https://myapp.vercel.app')"myapp.vercel.app is protected by auth. Please create a shareable link for it"
web_fetch_vercel_urlAllows agents to directly fetch content from a Vercel deployment URL (with authentication if required)url (string, required): The full URL of the Vercel deployment including the path (e.g. 'https://myapp.vercel.app/my-page')"Make sure the content from my-app.vercel.app/api/status looks right"
NameDescriptionParametersSample prompt
use_vercel_cliInstructs the LLM to use Vercel CLI commands with --help flag for informationcommand (string, optional): Specific Vercel CLI command to run

action (string, required): What you want to accomplish with Vercel CLI
"Help me deploy this project using Vercel CLI"
deploy_to_vercelDeploy the current project to VercelNone"Deploy this project to Vercel"

Was this helpful?

supported.