Vercel MCP

{ "name": "vercel-mcp", "version": "0.0.6", "description": "An MCP server that connects to Vercel API", "module": "index.ts", "bin": { "vercel-mcp": "./build/index.js" }, "files": [ "build" ], "type": "module", "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "check": "bunx biome check --write .", "start": "node build/index.js", "bump": "npm version patch --no-git-tag-version", "prepublishOnly": "bun check && npm run build && npm run bump", "push": "npm run build && npm publish" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.6.0", "@vercel/sdk": "^1.3.1", "workers-mcp": "^0.0.13", "zod": "^3.24.2" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/bun": "^1.2.4", "@types/node": "^22.13.5", "typescript": "^5.7.3" }, "author": "zueai", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/zueai/vercel-api-mcp" }, "engines": { "node": ">=18" } }