UNPKG

chrome-automation-mcp

Version:

MCP server for browser automation with custom scripts

19 lines (13 loc) 558 B
#!/usr/bin/env node // Set lite mode environment variable before importing modules process.env.MCP_LITE_MODE = "true"; const { ChromeAutomationServer } = require("../src/ChromeAutomationServer"); async function main() { console.error("[MCP] Starting Browser Automation Server in LITE mode"); console.error( "[MCP] Available tools: launch_browser, close_browser, run_script, set_storage, list_sessions, close_all_browsers, cleanup_sessions" ); const server = new ChromeAutomationServer(); await server.run(); } main().catch(console.error);