UNPKG

opendoor-mcp

Version:

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

50 lines 1.53 kB
import { ServiceContainer } from '../index.js'; export declare const createPlaywrightSessionTool: { definition: { name: string; description: string; inputSchema: { type: string; properties: { browser: { type: string; enum: string[]; description: string; }; headless: { type: string; description: string; }; viewport: { type: string; properties: { width: { type: string; minimum: number; maximum: number; }; height: { type: string; minimum: number; maximum: number; }; }; description: string; }; memory: { type: string; enum: string[]; description: string; }; }; required: never[]; }; }; execute(input: unknown, services: ServiceContainer): Promise<{ content: { type: string; text: string; }[]; }>; }; //# sourceMappingURL=CreatePlaywrightSessionTool.d.ts.map