/** * Static documentation resources exposed over MCP `resources/list` and * `resources/read`. They contain no per-user data and make no upstream API * calls, so they are safe to serve without an API key (discovery clients can * read them to understand the server before a key is configured). */ interface ResourceDef { uri: string; name: string; description: string; mimeType: string; build: () => string; } export declare const resources: ResourceDef[]; export declare function listResources(): { uri: string; name: string; description: string; mimeType: string; }[]; export declare function readResource(uri: string): { uri: string; mimeType: string; text: string; } | null; export {}; //# sourceMappingURL=index.d.ts.map