/** * Inspector tools — used by humans (and orchestrating agents) to peek * at the registered tool surface without round-tripping through SDK * introspection. * * `tools_list` returns names + descriptions + auth class. * `tools_schema` returns the Zod-derived JSON schema for one tool or * all tools. Implementation note: we use `zod`'s `z.toJSONSchema` * (Zod 4+) to keep the surface dependency-free. */ import { McpRegistry } from "../registry.js"; export declare const registerInspectorTools: (registry: McpRegistry) => void;