Community MCP server for Vercel deployment platform.
npx -y @vercel/mcp
{
"mcpServers": {
"vercel": {
"env": {
"VERCEL_API_TOKEN": "xxx"
},
"args": [
"-y",
"@vercel/mcp"
],
"command": "npx"
}
}
}Get build logs for a deployment
{
"type": "object",
"required": [
"deployment_id"
],
"properties": {
"deployment_id": {
"type": "string"
}
}
}// Input
{
"deployment_id": "dpl_1"
}// Output
{
"logs": "Building...\\nCompiled successfully."
}List recent Vercel deployments
{
"type": "object",
"required": [
"project"
],
"properties": {
"project": {
"type": "string"
}
}
}// Input
{
"project": "my-app"
}// Output
{
"deployments": [
{
"id": "dpl_1",
"url": "my-app.vercel.app",
"state": "READY"
}
]
}Trigger a new deployment
{
"type": "object",
"required": [
"project"
],
"properties": {
"ref": {
"type": "string"
},
"project": {
"type": "string"
}
}
}Community MCP server for Vercel deployment platform.
Vercel provides 3 tools including get_build_logs, list_deployments, trigger_deployment.
Yes, Vercel is completely free to use with no usage limits on the free tier.
You can install Vercel using the following command: npx -y @vercel/mcp. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
// Input
{
"ref": "main",
"project": "my-app"
}// Output
{
"id": "dpl_2",
"url": "my-app-abc.vercel.app"
}Vercel is listed under the Development Tools category in the AgentForge MCP registry.
Vercel has a current uptime of 99.78% with an average response time of 320ms.
To connect Vercel, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Vercel's tools via the Model Context Protocol.