Web Browser MCP Server

The Web Browser MCP Server provides AI models with the ability to browse websites, extract content, and understand web pages through the Message

Local serverstdioPython

What is the Web Browser MCP server?

Web Browser MCP server exists for a simple reason — assistants are far more useful when they can act on Web Browser directly instead of describing what you should do. The Web Browser MCP Server provides AI models with the ability to browse websites, extract content, and understand web pages through the Message Control Protocol (MCP). It enables smart content extraction with CSS selectors and robust.

What the assistant can call

Once Web Browser is connected, these are the calls the assistant has available:

  • browse_webpage — Browse and extract content from web pages with optional CSS selectors:

Configuration and credentials

You will need one environment variable: REQUEST_TIMEOUT. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

@smithery/cli on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Choosing this one

Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Web Browser's toolset — browse_webpage — is a fair guide to whether it matches your workflow. It is maintained by blazickjp; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the web browser mcp server does with a few real requests.

Available tools

ToolWhat it does
browse_webpageBrowse and extract content from web pages with optional CSS selectors:

How to install the Web Browser MCP server

{
    "mcpServers": {
        "web-browser-mcp-server": {
            "command": "uv",
            "args": [
                "tool",
                "run",
                "web-browser-mcp-server"
            ],
            "env": {
                "REQUEST_TIMEOUT": "30"
            }
        }
    }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
REQUEST_TIMEOUTConfiguration value read at startup.Optional

Example prompts to try

  • Use Web Browser to browse webpage.

Frequently asked questions

It connects Web Browser to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (browse_webpage) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Web Browser directly.