export declare const LEGACY_TOOL_ALIASES: Record; /** * Resolve a possibly-legacy tool name to its canonical form, emitting a * one-time stderr deprecation warning the first time each legacy name is * seen in this server instance. Pure function on the resolution side; * mutates `warnedAliases` as a side effect. Returns the canonical name. * * Exported for unit tests. */ export declare function resolveToolName(name: string, warnedAliases: Set, writeWarning?: (msg: string) => void): string; export declare function startMcpServer(rootPath: string): Promise; export declare function startGlobalMcpServer(): Promise;