export type ToolCatalogEntry = { name: string; summary: string; access: "read" | "write"; }; export type ListToolsResponse = { tools: ToolCatalogEntry[]; }; //# sourceMappingURL=types.d.ts.map