Skip to main content
Glama

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
NameRequiredDescriptionDefault
operationYesThe Vercel operation
api_tokenNoVercel API token (for authenticate)
paramsNoOperation parameters

Implementation Reference

  • 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;
    }
  • 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"],
      },
    });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hyperpolymath/boj-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server