type Mcp_scope = 'global' | 'project'; type Mcp_write_opts = { overwrite_invalid?: boolean; }; declare class Invalid_mcp_config_error extends Error { file_path: string; constructor(file_path: string, reason: string); } declare const upsert_mcp_config: (file_path: string, api_key: string, opts?: Mcp_write_opts) => void; declare const write_claude_code_mcp: (api_key: string, scope: Mcp_scope, opts?: Mcp_write_opts) => void; declare const write_cursor_mcp: (api_key: string, scope: Mcp_scope, opts?: Mcp_write_opts) => void; declare const write_codex_mcp: (api_key: string, opts?: Mcp_write_opts) => void; export { Invalid_mcp_config_error, upsert_mcp_config, write_claude_code_mcp, write_cursor_mcp, write_codex_mcp, }; export type { Mcp_scope, Mcp_write_opts }; //# sourceMappingURL=mcp-config.d.ts.map