/** * Wraps data in MCP tool response format with JSON content */ export declare function jsonResponse(data: unknown): { content: { type: "text"; text: string; }[]; }; /** * Wraps text in MCP tool response format */ export declare function textResponse(text: string): { content: { type: "text"; text: string; }[]; };