Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
1–10 of 229 posts
Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
#2Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
#3Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
#4Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
#5Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
#6Why use this over Puppeteer or Playwright extensions?
The Playwright MCP server is great! Currently Browser MCP is largely an adaptation of the Playwright MCP server to use with your actual browser rather than creating a new one each time. This allows you to reuse your existing Chrome profile so that you don't need to log in to each service all over again and avoids bot detection which often triggers when using the fresh browser instances created by Playwright.
I also plan to add other useful tools (e.g. Browser MCP currently supports a tool to get the console logs which is useful for automated debugging) which will likely diverge from the Playwright MCP server features.
Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
#7This is cool. I'm curious why you chose to use an extension, rather than getting the user to run Chrome with remote debugging turned on?
'Avoids bot detection and CAPTCHAs by using your real browser fingerprint.'
Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
#8I don't know if you've done it already, but it would be great to pause automation when you detect a captcha on the page and then notify the user that the automation needs attention. Playwright keeps trying to plough through captchas.
Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
#9This is cool. I'm curious why you chose to use an extension, rather than getting the user to run Chrome with remote debugging turned on?
Not OP but I suspect it is because of this (mentioned on their page): 'Avoids bot detection and CAPTCHAs by using your real browser fingerprint.'
Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code
#10Why use this over Puppeteer or Playwright extensions?
The Puppeteer MCP server doesn't work well because it requires CSS selectors to interact with elements. It makes up CSS selectors rather than reading the page and generating working selectors. The Playwright MCP server is great! Currently Browser MCP is largely an adaptation of the Playwright MCP server to use with your actual browser rather than creating a new one each time. This allows you to reuse your existing Ch…