/** Shape of an MCP tool definition entry. */ export interface ToolDefinition { name: string; description: string; inputSchema: { type: "object"; properties: Record; required?: string[]; }; } //# sourceMappingURL=types.d.ts.map