Skip to content

Commit 904444c

Browse files
authored
feat: add Vercel MCP server definition (#82)
* 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 * fix: update Vercel documentation URL to official docs
1 parent 25ff5c6 commit 904444c

1 file changed

Lines changed: 52 additions & 0 deletions

File tree

servers/com.vercel-mcp.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.vercel-mcp",
4+
"name": "Vercel",
5+
"alias": "vercel",
6+
"description": "Access Vercel project deployments, runtime logs, and configuration through Vercel's official hosted remote MCP server with OAuth. Currently read-only.",
7+
"icon": "https://avatars.githubusercontent.com/u/14985020?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"cloud",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"vercel",
15+
"deployment",
16+
"hosting",
17+
"nextjs",
18+
"serverless",
19+
"logs",
20+
"devops"
21+
],
22+
"transport": {
23+
"type": "http",
24+
"url": "https://mcp.vercel.com",
25+
"metadata": {
26+
"inputs": []
27+
}
28+
},
29+
"auth": {
30+
"type": "oauth",
31+
"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."
32+
},
33+
"contributor": {
34+
"name": "Vercel",
35+
"github": "vercel",
36+
"url": "https://vercel.com"
37+
},
38+
"links": {
39+
"repository": "https://github.com/vercel/mcp-handler",
40+
"homepage": "https://vercel.com",
41+
"documentation": "https://vercel.com/docs/mcp/vercel-mcp"
42+
},
43+
"platforms": [
44+
"all"
45+
],
46+
"capabilities": {
47+
"tools": true,
48+
"resources": false,
49+
"prompts": false,
50+
"read_only_mode": true
51+
}
52+
}

0 commit comments

Comments
 (0)