/** * Shared Response Formatter for MCP Tools * * Centralized response formatting logic for all MCP tools. * Provides consistent JSON formatting and success response structure. */ import { CallToolResult } from '@modelcontextprotocol/sdk/types.js'; /** * Create a standardized success response with JSON-formatted data * * @param data - The data to return in the response * @param prettyPrint - Whether to pretty-print the JSON (default: true) * @returns Standardized success response */ export declare function createSuccessResponse(data: unknown, prettyPrint?: boolean): CallToolResult; //# sourceMappingURL=tool-response.d.ts.map