#!/usr/bin/env node import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** * Create a standard MCP text response */ declare function textResponse(text: string): { content: { type: "text"; text: string; }[]; }; /** * Create a standard MCP JSON response */ declare function jsonResponse>(data: T): { content: { type: "text"; text: string; }[]; structuredContent: T; }; /** * Create a standard MCP error response */ declare function errorResponse(message: string): { content: { type: "text"; text: string; }[]; }; declare const server: McpServer; export { server, textResponse, jsonResponse, errorResponse }; //# sourceMappingURL=index.d.ts.map