boj_cloud_vercel
Manage Vercel projects by handling deployments, domains, environment variables, logs, and serverless functions through the BoJ-server MCP server.
Instructions
Manage Vercel projects — deployments, domains, environment variables, logs, serverless functions
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | The Vercel operation | |
| api_token | No | Vercel API token (for authenticate) | |
| params | No | Operation parameters |
Implementation Reference
- mcp-bridge/main.js:671-677 (handler)The handler for the boj_cloud_vercel tool, which dispatches the request to the 'cloud-mcp' cartridge.
case "boj_cloud_verpex": case "boj_cloud_cloudflare": case "boj_cloud_vercel": { const result = await invokeCartridge("cloud-mcp", { provider: toolName.replace("boj_cloud_", ""), ...args }); sendResult(id, { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }); break; } - mcp-bridge/main.js:388-400 (schema)Registration and input schema definition for the boj_cloud_vercel tool.
tools.push({ name: "boj_cloud_vercel", description: "Manage Vercel projects — deployments, domains, environment variables, logs, serverless functions", inputSchema: { type: "object", properties: { operation: { type: "string", enum: ["authenticate", "list-projects", "get-project", "list-deployments", "get-deployment", "list-domains", "list-env-vars", "deployment-logs", "list-functions"], description: "The Vercel operation" }, api_token: { type: "string", description: "Vercel API token (for authenticate)" }, params: { type: "object", description: "Operation parameters" }, }, required: ["operation"], }, });