File size: 720 Bytes
cf3884b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | {
"name": "web_fetch_vercel_url",
"description": "Fetches a Vercel deployment URL and returns the response.\n This is useful if another web fetch tool returns 401 (Unauthorized) or 403 (Forbidden) for a Vercel URL.\n Supports accessing deployments protected with Vercel Authentication which the user of this MCP server has access to.",
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The full URL of the Vercel deployment including the path (e.g. \"https://myapp.vercel.app/my-page\")."
}
},
"required": [
"url"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
} |