import type { McpServerConfig } from "../../types/config.js"; /** * Write Claude Code's MCP config to an explicit file path. Caller is * responsible for ensuring the parent directory exists and for wiring * `--mcp-config ` into the CLI invocation — we deliberately avoid * writing `.mcp.json` into the workspace so the agent doesn't see its own * config when scanning files. */ export declare function writeClaudeMcpConfig(targetPath: string, servers: Record): void; /** * Write config.toml for Codex (placed in CODEX_HOME). * Hand-generates TOML to avoid a library dependency. */ export declare function writeCodexMcpConfig(codexHome: string, servers: Record): void; //# sourceMappingURL=mcp.d.ts.map