chore: prep folders for copying upstream (#987)

This commit is contained in:
Pavel Feldman
2025-09-03 16:02:07 -07:00
committed by GitHub
parent 2461f32d05
commit d142f13d80
73 changed files with 128 additions and 953 deletions

View File

@@ -14,15 +14,15 @@
* limitations under the License.
*/
import { BrowserServerBackend } from './browserServerBackend';
import { resolveConfig } from './config';
import { contextFactory } from './browserContextFactory';
import * as mcpServer from './mcp/server';
import { packageJSON } from './utils/package';
import { BrowserServerBackend } from './browser/browserServerBackend';
import { resolveConfig } from './browser/config';
import { contextFactory } from './browser/browserContextFactory';
import * as mcpServer from './sdk/server';
import { packageJSON } from './package';
import type { Config } from '../config.js';
import type { Config } from '../config';
import type { BrowserContext } from 'playwright';
import type { BrowserContextFactory } from './browserContextFactory';
import type { BrowserContextFactory } from './browser/browserContextFactory';
import type { Server } from '@modelcontextprotocol/sdk/server/index.js';
export async function createConnection(userConfig: Config = {}, contextGetter?: () => Promise<BrowserContext>): Promise<Server> {