type ScopeOpts = { global?: boolean; }; export type McpAddOptions = ScopeOpts & { command?: string; args?: string; url?: string; oauth?: boolean; }; export declare function mcpAdd(name: string, opts: McpAddOptions): Promise; export declare function mcpRemove(name: string, opts: ScopeOpts): Promise; export declare function mcpList(): number; export {};