How to add browser tools mcp on Windows?

Hi there,

I am trying to add Agentdeskai Browser-Tools-MCP to my cursor on Windows. On settings when I click to add new global MCP Server, it opens up a blank mcp.json.
Is there any tutorial that I can follow to add Browser Tools MCP in cursor on Windows?

Thanks in advance.

Best Regards.

1 Like

Hey, here you can check out the installation guide:

1 Like

I couldn’t find what to write in mcp.json in the guide for browser tools.

Take a look at item 3c. there are tabs there.

In any case I am running windows, I’ve tried the suggested settings as well as tried to configure to run with bash, cmd etc and none seem to work. I can run npx -y @agentdeskai/[email protected] directly in terminal and it will execute and run. But cannot seem to get it configured through MCP json in cursor.

{
  "mcpServers": {
    "browser-tools": {
      "command": "wsl",
      "args": [
        "bash",
        "-c",
        "cmd /c npx -y @agentdeskai/[email protected]"
      ],
      "enabled": true
    }
  }
}

npx is in my PATH.. and like I say, I can run from gitbash or WSL terminal and it runs but can’t seem to figure out the correct config for mcp.json

Me neither;

I tried to solve it by changing the command.

{
  "mcpServers": {
    "browser-tools": {
      "command": "cmd",
      "args": ["/c", "npx -y @agentdeskai/[email protected]"],
      "enabled": true
    }
  }
}

result

4 Likes