Back to tools

register_site

Register a new Vercel-hosted site in the platform inventory.

Schema and Policy
{
  "name": "register_site",
  "description": "Register a new Vercel-hosted site in the platform inventory.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "Site display name"
      },
      "domain": {
        "type": "string",
        "description": "Primary domain"
      },
      "aliases": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "vertical": {
        "type": "string",
        "description": "Vertical category"
      },
      "description": {
        "type": "string",
        "description": "Site description"
      },
      "mcpEnabled": {
        "type": "boolean"
      },
      "mcpUrl": {
        "type": "string"
      }
    },
    "required": [
      "name",
      "domain",
      "vertical",
      "description"
    ]
  },
  "category": "Sites",
  "authRequired": true,
  "mutability": "write",
  "status": "auth_required"
}