Live data from Hacker News

Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code

browsermcp.io

141–150 of 229 posts

Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code

#141
post #68

Earlier quoted context omitted.

it does, CF bans my own honest to God clicks if I do them too fast.

About five years ago, maybe more, Google started sending me captchas if I ran too many repetitive searches. I could be wrong, but it feel like most large platforms have fairly sophisticated anti-bot/scraping stuff in place.

GitHub regularly blocks me for some reason. They tell me to slow down and I’m blocked for hours. I don’t get it.

Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code

#143

Earlier quoted context omitted.

> with a "browser MCP" it is now possible: ChatGPT has a way to tell your browser "open Google maps", "show me a screenshot", "click at that position", etc It seems strange to me to focus on this sort of standard well in advance of models being reliable enough to, ya know, actually be able perform these operations on behalf of the user with any sort of strong reliability that you would need for widespread adoption to…

I think MCPs compensate for the unreliability issue by providing a minimal and well defined interface to a controlled set of actions. That way, the llm doesn't have to be as reliable thinking what it needs to do and in acting, just in choosing what to do from a short list.

You can provide an MCP for Pokemon Red, but Claude will still flounder for weeks, making absurd mistakes on a game literally designed for children.

Believe me. It's not there yet.

Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code

#144
post #81

Earlier quoted context omitted.

Agreed, I'd been working on a Google Sheets specific MCP last week – just got it published here: https://github.com/mkummer225/google-sheets-mcp

This is cool. You should submit this as a 'Show HN'. Also consider publishing it so people can use it without having to use git.

Publishing it where? It can’t be a github page, it’s too complex; anything else incurs real costs.

Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code

#145
post #141

Earlier quoted context omitted.

About five years ago, maybe more, Google started sending me captchas if I ran too many repetitive searches. I could be wrong, but it feel like most large platforms have fairly sophisticated anti-bot/scraping stuff in place.

GitHub regularly blocks me for some reason. They tell me to slow down and I’m blocked for hours. I don’t get it.

Make sure you are logged in. It was blocking me after just a couple searches if not logged in.

Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code

#146

Earlier quoted context omitted.

This is cool. You should submit this as a 'Show HN'. Also consider publishing it so people can use it without having to use git.

Publishing it where ? It can’t be a github page, it’s too complex; anything else incurs real costs.

I mean publish it on the npm registry (https://www.npmjs.com/signup). That way, it would be easy to install, just by adding some lines to claude_desktop_config.json:

  {
    "mcpServers": {
      "ragdocs": {
        "command": "npx",
        "args": [
          "-y",
          "@qpd-v/mcp-server-ragdocs"
        ],
        "env": {
          "QDRANT_URL": "http://127.0.0.1:6333",
          "EMBEDDING_PROVIDER": "ollama",
          "OLLAMA_URL": "http://localhost:11434"
        }
      },
     }
    }
  }

Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code

#148

Earlier quoted context omitted.

Modern captchas use a number of tools including many of the approaches you mentioned. This why you might sometimes see a CloudFlare "I am not a robot" checkbox that checks itself and moves along before you have much time to even react. It's looking at a number of signals to determine that you're probably human before you've even checked the box.

When I am using keyboard navigation, shortcuts and autofills, I seem to get mistaken for a bot a lot. These Captchas are really bad at detecting bots and really good at falsely labelling humans as bots.

They're detecting patterns predominantly bots use. The fact that some humans also use them doesn't change that.

Back when I was playing Call of Duty 4, I got routinely accused of cheating because some people didn't think it was possible to click the mouse button as fast as I did.

To them it looked like I had some auto-trigger bot or Xbox controller.

I did in fact just have a good mouse and a quick finger.

Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code

#149

When I go to a shopping website I want to be able to tell my browser "hey please go through all the sideboards on this list and filter out for the ones that are larger than 155cm and smaller than 100cm, prioritise the ones with dark wood and space for vinyl records which are 31.43cm tall" for example. Is there any browser that can do this yet as it seems extremely useful to be able to extract details from the page!

Hey, we’re working on MatterRank which is pretty similar to this but currently works on web search. (e.g. I want to prioritize results that talk about X and have Y bias and I want to deprioritize those that are trying to sell me something). Feel free to try it out at https://matterrank.ai Would also be interested in hearing more about what you’re envisioning for your use case. Are you thinking a browser extension tha…

Not OP but I definitely sympathise with them. I don't know how practical it is to implement or how profitable it would be, but the problem I often have is this: * I have something I want to buy and have specific needs for it (height, color, shape, other properties) * I know that there's a good chance the website I'm on sells a product that meets those needs (or possibly several such that I'd want to choose from) * my criteria are more specific than the filters available on the site e.g. I want a specific length down to a few cm because I want the biggest thing that will fit in a fixed space * crucially for an AI use case: the information exists on the individual product pages. They all list dimensions and specifications. I just don't want to have to go through them all.

Example: find me all of the desks on IKEA that come in light coloured wood, are 55 inches wide, and rank them from deepest to shallowest. Oh, and make sure they're in stock at my nearest IKEA, or are delivering within the next week.

Re: Show HN: Browser MCP – Automate your browser using Cursor, Claude, VS Code

#150

Earlier quoted context omitted.

I think MCPs compensate for the unreliability issue by providing a minimal and well defined interface to a controlled set of actions. That way, the llm doesn't have to be as reliable thinking what it needs to do and in acting, just in choosing what to do from a short list.

You can provide an MCP for Pokemon Red, but Claude will still flounder for weeks, making absurd mistakes on a game literally designed for children. Believe me. It's not there yet.

Is there an MCP for pokemon red?
Post reply on HN