MCP-B: A Protocol for AI Browser Automation
1–10 of 200 posts
Re: MCP-B: A Protocol for AI Browser Automation
#2This was an idea I had while trying to build MCP servers internally at Amazon. Today I am open sourcing it. TLDR it's an extension of the Model Context Protocol which allows you to treat your website as an MCP server which can be discovered and called by MCP-B compliant web extensions.
You can read a more detailed and breakdown here (with gifs): https://mcp-b.ai/blogs
Re: MCP-B: A Protocol for AI Browser Automation
#3Hey HN, This was an idea I had while trying to build MCP servers internally at Amazon. Today I am open sourcing it. TLDR it's an extension of the Model Context Protocol which allows you to treat your website as an MCP server which can be discovered and called by MCP-B compliant web extensions. You can read a more detailed and breakdown here (with gifs): https://mcp-b.ai/blogs
Re: MCP-B: A Protocol for AI Browser Automation
#4Re: MCP-B: A Protocol for AI Browser Automation
#5Would it be possible to do this with any arbitrary website since we can execute JS client side?
The examples focus mostly on extensions injecting clients at website load time, but you can ship a client with your server javascript. That being said, if the client and server live in the the same script I recommend just using the InMemoryTransports from the official SDK.
Re: MCP-B: A Protocol for AI Browser Automation
#6Re: MCP-B: A Protocol for AI Browser Automation
#7I don't get it from the homepage, feels like Selenium on the browser, since you built it can you explain ?
MCP-B is a different approach. Website owners create MCP servers `inside` their websites, and MCP-B clients are either injected by browser extensions or included in the websites JS.
Instead of visual parsing like Playwright, you get standard deterministic function calls.
You can see the blog post for code examples: https://mcp-b.ai/blogs
Re: MCP-B: A Protocol for AI Browser Automation
#8I doubt that, first and not least because Home Depot stocks lumber.
Re: MCP-B: A Protocol for AI Browser Automation
#9> If I asked you to build a table and gave you a Home Depot you probably would have a harder time than if I gave you a saw, a hammer and some nails. I doubt that, first and not least because Home Depot stocks lumber.
Re: MCP-B: A Protocol for AI Browser Automation
#10I don't get it from the homepage, feels like Selenium on the browser, since you built it can you explain ?
Similar but also very different. Playwright and Selenium are browser automation frameworks. There is a Playwright-MCP server which let's your agent use Playwright for browser automation. MCP-B is a different approach. Website owners create MCP servers `inside` their websites, and MCP-B clients are either injected by browser extensions or included in the websites JS. Instead of visual parsing like Playwright, you get…