UNPKG

opendoor-mcp

Version:

Production-grade MCP server with multi-language code execution, VS Code integration, and browser automation

16 lines 675 B
#!/usr/bin/env node import { ConfigService } from './services/ConfigService.js'; import { SessionManager } from './session/SessionManager.js'; import { LocalExecutionManager } from './container/LocalExecutionManager.js'; import { SecurityManager } from './security/SecurityManager.js'; import { HealthService } from './services/HealthService.js'; export interface ServiceContainer { sessionManager: SessionManager; executionManager: LocalExecutionManager; securityManager: SecurityManager; configService: ConfigService; healthService: HealthService; } declare let services: ServiceContainer | null; export { services }; //# sourceMappingURL=index.d.ts.map