drio
Open app

open-browser-mcp-server

Source

Open the browser and visit the specified website address

Catalog onlyCatalog onlySTDIO

Overview

open-browser-mcp-server is a tool designed to automate the process of opening a web browser and navigating to a specified website address.

To use open-browser-mcp-server, simply run the server and provide the desired website URL as a parameter. The server will then open the default web browser and navigate to the specified address.

  • Automates browser opening and navigation to specified URLs. - Simple and easy-to-use interface for web automation tasks. - Built with JavaScript, making it accessible for developers familiar with the language.
  1. Automating testing of web applications by opening specific URLs.
  2. Quickly accessing frequently visited websites without manual input.
  3. Integrating with other automation tools to enhance web interaction capabilities.

Add to your AI client

Use these steps to connect open-browser-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "open-browser-mcp-server-handoing": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-open-browser-mcp-server-handoing"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "open-browser-mcp-server-handoing": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-open-browser-mcp-server-handoing"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "open-browser-mcp-server-handoing": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-open-browser-mcp-server-handoing"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "open-browser-mcp-server-handoing": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-open-browser-mcp-server-handoing"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "open-browser-mcp-server-handoing": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-open-browser-mcp-server-handoing"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "open-browser-mcp-server-handoing": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-open-browser-mcp-server-handoing"
      ]
    }
  }
}

FAQ

What programming language is open-browser-mcp-server built with?

open-browser-mcp-server is built with JavaScript.

Is there a graphical user interface for this tool?

No, it is a command-line tool designed for automation purposes.

Can I use it to open multiple websites at once?

Currently, it supports opening one website at a time.