@gala-chain/launchpad-mcp-server
Version:
MCP server for Gala Launchpad SDK with 55 tools + 14 slash commands - Production-grade AI agent integration with comprehensive validation, optimized performance, and 80%+ test coverage
19 lines • 524 B
TypeScript
/**
* Response Formatter Utility
*
* Formats SDK responses for MCP protocol
*/
import type { MCPToolResponse } from '../types/mcp.js';
/**
* Format successful response
*/
export declare function formatSuccess(data: any): MCPToolResponse;
/**
* Format boolean response
*/
export declare function formatBoolean(result: boolean, message?: string): MCPToolResponse;
/**
* Format simple text response
*/
export declare function formatText(text: string): MCPToolResponse;
//# sourceMappingURL=response-formatter.d.ts.map