export type RemoteMcpConfig = { type: 'remote'; url: string; headers?: Record; oauth?: false; }; export type LocalMcpConfig = { type: 'local'; command: string[]; environment?: Record; }; export type McpConfig = RemoteMcpConfig | LocalMcpConfig;