UNPKG

chrome-automation-mcp

Version:

MCP server for browser automation with custom scripts

14 lines (9 loc) 345 B
#!/usr/bin/env node const { ChromeAutomationServer } = require("../src/ChromeAutomationServer"); async function main() { console.error("[MCP] Starting Browser Automation Server in FULL mode"); console.error("[MCP] All tools available"); const server = new ChromeAutomationServer(); await server.run(); } main().catch(console.error);