/** * Content MCP Resources * * Expose content as browsable MCP resources: * - frase://content - List of content items * - frase://content/{id} - Individual content with full body */ import type { ToolContext } from "../types.js"; export declare const CONTENT_URI = "frase://content"; export declare const CONTENT_URI_PREFIX = "frase://content/"; export declare const contentResourceTemplates: { uriTemplate: string; name: string; description: string; mimeType: string; }[]; export interface ContentResource { uri: string; name: string; description: string; mimeType: string; } export declare function listContentResources(context: ToolContext): Promise; export declare function readContentResource(uri: string, context: ToolContext): Promise; export declare function matchesContentUri(uri: string): boolean; //# sourceMappingURL=content.d.ts.map