/** * Canonical MCP tool names. * * Both the server (index.ts) and tests import from here so * the set of advertised tools stays in sync. */ export declare const TOOL_NAMES: { readonly EDIT_FILE: "edit_file"; readonly CODEBASE_SEARCH: "codebase_search"; readonly GITHUB_CODEBASE_SEARCH: "github_codebase_search"; readonly REFLEX_LIST: "reflex_list"; readonly REFLEX_PREDICT: "reflex_predict"; readonly REFLEX_SUMMARY: "reflex_summary"; readonly REFLEX_TRACES: "reflex_traces"; }; export type ToolName = (typeof TOOL_NAMES)[keyof typeof TOOL_NAMES]; export declare const ALL_TOOL_NAMES: readonly ToolName[]; export declare const KNOWN_TOOL_NAMES: Set;