import type { VercelRequest, VercelResponse } from "./_types.js"; /** * /.well-known/mcp.json — MCP discovery manifest * * AI agents and crawlers (Anthropic, OpenAI, Glama, Smithery) read this * to discover the server's endpoint, capabilities, and tools. * Spec: https://spec.modelcontextprotocol.io/specification/ * * Single source of truth — the static .well-known/mcp.json file was removed * (see fix/mcp-manifest-single-sot). All discovery fields live here. * `version` is read dynamically from package.json so it cannot drift. */ export default function handler(req: VercelRequest, res: VercelResponse): void;