| { | |
| "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#" | |
| } | |
| } |