/** * Copyright (c) Microsoft Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { createMCPServer } from './connection.js'; import { Context } from './context.js'; import { contextFactory as defaultContextFactory } from './browserContextFactory.js'; import type { FullConfig } from './config.js'; import type { Transport } from '@modelcontextprotocol/sdk/shared/transport.js'; import type { BrowserContextFactory } from './browserContextFactory.js'; import type { Tool } from './tools/tool.js'; export class Server { readonly config: FullConfig; private _browserConfig: FullConfig['browser']; private _contextFactory: BrowserContextFactory; readonly tools: Tool[]; constructor(config: FullConfig, tools: Tool[], contextFactory?: BrowserContextFactory) { this.config = config; this.tools = tools; this._browserConfig = config.browser; this._contextFactory = contextFactory ?? defaultContextFactory(this._browserConfig); } async createConnection(transport: Transport): Promise { const server = await createMCPServer(this.config, this.tools, this._contextFactory); await server.connect(transport); } setupExitWatchdog() { let isExiting = false; const handleExit = async () => { if (isExiting) return; isExiting = true; setTimeout(() => process.exit(0), 15000); await Context.disposeAll(); process.exit(0); }; process.stdin.on('close', handleExit); process.on('SIGINT', handleExit); process.on('SIGTERM', handleExit); } }