/** * Kimi Code MCP injector. * * Kimi Code loads MCP servers from `${KIMI_CODE_HOME:-~/.kimi-code}/mcp.json`. * The config shape follows the common MCP host convention: * * { * "mcpServers": { * "agim": { "command": "...", "args": [...], "env": {...} } * } * } * * We keep operator-defined entries intact and only update the agim server so * it points at the current approval-bus socket, which rotates each agim start. */ export declare function kimiCodeHome(): string; export declare function defaultMcpConfigPath(): string; export interface McpServerSpec { command: string; args?: string[]; env?: Record; } export declare function ensureAgimMcp(spec: McpServerSpec, opts?: { path?: string; }): Promise; export declare function removeAgimMcp(opts?: { path?: string; }): Promise; //# sourceMappingURL=ensure-mcp-config.d.ts.map