File size: 1,426 Bytes
cf3884b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | {
"name": "search_vercel_documentation",
"description": "Search the Vercel documentation.\n \n Use this tool to answer any questions about Vercel’s platform, features, and best practices, including:\n - Core Concepts: Projects, Deployments, Git Integration, Preview Deployments, Environments\n - Frontend & Frameworks: Next.js, SvelteKit, Nuxt, Astro, Remix, frameworks configuration and optimization\n - APIs: REST API, Vercel SDK, Build Output API\n - Compute: Fluid Compute, Functions, Routing Middleware, Cron Jobs, OG Image Generation, Sandbox, Data Cache\n - AI: Vercel AI SDK, AI Gateway, MCP, v0\n - Performance & Delivery: Edge Network, Caching, CDN, Image Optimization, Headers, Redirects, Rewrites\n - Pricing: Plans, Spend Management, Billing\n - Security: Audit Logs, Firewall, Bot Management, BotID, OIDC, RBAC, Secure Compute, 2FA\n - Storage: Blog, Edge Config",
"inputSchema": {
"type": "object",
"properties": {
"topic": {
"type": "string",
"description": "Topic to focus the documentation search on (e.g., 'routing', 'data-fetching')."
},
"tokens": {
"type": "number",
"description": "Maximum number of tokens to include in the result. Default is 2500.",
"default": 2500
}
},
"required": [
"topic"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
} |