import { H2A_CLI_MCP_TOOL_NAMES } from "../../mcp.js"; export type McpToolName = (typeof H2A_CLI_MCP_TOOL_NAMES)[number]; export interface McpToolDescriptor { name: string; description: string; inputSchema: { type: "object"; properties?: Record; required?: readonly string[]; additionalProperties?: boolean; }; } /** * The one h2a endpoint serves coordination plus Track's read-only MCP tools. * Track exports its descriptors and dispatcher from the same package surface, * so the two transports cannot drift on schema or argument validation. */ export declare const H2A_CLI_MCP_TOOL_DESCRIPTORS: McpToolDescriptor[]; //# sourceMappingURL=tools.d.ts.map