From 0e4ff4d544e0f741e7ee7a106db7f3fbfe74fc1c Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:36:38 +0000 Subject: [PATCH 1/2] feat: add Vercel MCP server definition Add Vercel official remote HTTP server at mcp.vercel.com with OAuth. Access deployments, runtime logs, and project config. Read-only. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.vercel-mcp.json | 45 +++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 servers/com.vercel-mcp.json diff --git a/servers/com.vercel-mcp.json b/servers/com.vercel-mcp.json new file mode 100644 index 0000000..b588ba9 --- /dev/null +++ b/servers/com.vercel-mcp.json @@ -0,0 +1,45 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.vercel-mcp", + "name": "Vercel", + "alias": "vercel", + "description": "Access Vercel project deployments, runtime logs, and configuration through Vercel's official hosted remote MCP server with OAuth. Currently read-only.", + "icon": "https://avatars.githubusercontent.com/u/14985020?v=4", + "schema_version": "2.1", + "categories": ["cloud", "developer-tools"], + "tags": ["vercel", "deployment", "hosting", "nextjs", "serverless", "logs", "devops"], + + "transport": { + "type": "http", + "url": "https://mcp.vercel.com", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "oauth", + "instructions": "Connect via OAuth when prompted by your MCP client. You will be redirected to Vercel to authorize access and select which projects to expose." + }, + + "contributor": { + "name": "Vercel", + "github": "vercel", + "url": "https://vercel.com" + }, + + "links": { + "repository": "https://github.com/vercel/mcp-handler", + "homepage": "https://vercel.com", + "documentation": "https://vercel.com/blog/introducing-vercel-mcp-connect-vercel-to-your-ai-tools" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": true + } +} From fe7dd8eb7897768cbe1d786f8a052b2bbd16057d Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:23:04 +0800 Subject: [PATCH 2/2] fix: update Vercel documentation URL to official docs --- servers/com.vercel-mcp.json | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/servers/com.vercel-mcp.json b/servers/com.vercel-mcp.json index b588ba9..de1622c 100644 --- a/servers/com.vercel-mcp.json +++ b/servers/com.vercel-mcp.json @@ -6,9 +6,19 @@ "description": "Access Vercel project deployments, runtime logs, and configuration through Vercel's official hosted remote MCP server with OAuth. Currently read-only.", "icon": "https://avatars.githubusercontent.com/u/14985020?v=4", "schema_version": "2.1", - "categories": ["cloud", "developer-tools"], - "tags": ["vercel", "deployment", "hosting", "nextjs", "serverless", "logs", "devops"], - + "categories": [ + "cloud", + "developer-tools" + ], + "tags": [ + "vercel", + "deployment", + "hosting", + "nextjs", + "serverless", + "logs", + "devops" + ], "transport": { "type": "http", "url": "https://mcp.vercel.com", @@ -16,26 +26,23 @@ "inputs": [] } }, - "auth": { "type": "oauth", "instructions": "Connect via OAuth when prompted by your MCP client. You will be redirected to Vercel to authorize access and select which projects to expose." }, - "contributor": { "name": "Vercel", "github": "vercel", "url": "https://vercel.com" }, - "links": { "repository": "https://github.com/vercel/mcp-handler", "homepage": "https://vercel.com", - "documentation": "https://vercel.com/blog/introducing-vercel-mcp-connect-vercel-to-your-ai-tools" + "documentation": "https://vercel.com/docs/mcp/vercel-mcp" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false,