MCP Browser Use MCP Server

AI-driven browser automation server implementing the Model Context Protocol (MCP) for natural language browser control.

Local serverstdioPython

What is the MCP Browser Use MCP server?

MCP Browser Use becomes available to MCP clients through the mcp browser use mcp server. AI-driven browser automation server implementing the Model Context Protocol (MCP) for natural language browser control.

What MCP Browser Use does

AI-driven browser automation server implementing the Model Context Protocol (MCP) for natural language browser control.

Key capabilities

  • 🧠 MCP Integration - Full protocol implementation for AI agent communication
  • 🌐 Browser Automation - Page navigation, form filling, and element interaction
  • 👁️ Visual Understanding - Screenshot analysis and vision-based interactions
  • 🔄 State Persistence - Maintain browser sessions between tasks
  • 🔌 Multi-LLM Support - OpenAI, Anthropic, Azure, DeepSeek integration

Tools it exposes

Once connected, the assistant can call these 10 tools directly:

  • Provider — Value
  • Anthropic — anthropic
  • OpenAI — openai
  • DeepSeek — deepseek
  • Gemini — gemini
  • Mistral — mistral
  • Ollama — ollama
  • OpenRouter — openrouter
  • Prerequisites — The Prerequisites tool exposed by this server
  • Installation — The Installation tool exposed by this server

Installing the mcp browser use mcp server

The server is distributed via npm as @modelcontextprotocol/inspector, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 8 environment variables: OPENROUTER_API_KEY, OPENROUTER_ENDPOINT, OPENAI_ENDPOINT, OPENAI_API_KEY, ANTHROPIC_ENDPOINT, ANTHROPIC_API_KEY, GOOGLE_API_KEY, AZURE_OPENAI_ENDPOINT. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Python 3.11 or higher - uv (fast Python package installer) - Chrome/Chromium browser

Where it fits

AI-service servers chain other models into your assistant, turning a single chat into a small production pipeline. MCP Browser Use sits in that group, and the shape of its toolset — Provider, Anthropic, OpenAI among others — tells you what it is really for. Worth comparing against the other ai services servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 10 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use MCP Browser Use.
  • Maintained by Deploya-labs, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp browser use mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
ProviderValue
Anthropicanthropic
OpenAIopenai
DeepSeekdeepseek
Geminigemini
Mistralmistral
Ollamaollama
OpenRouteropenrouter
PrerequisitesThe Prerequisites tool exposed by this server.
InstallationThe Installation tool exposed by this server.

How to install the MCP Browser Use MCP server

{
  "mcpServers": {
    "browser-use": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/inspector"],
      "env": {
        "OPENROUTER_API_KEY": "your-value",
        "OPENROUTER_ENDPOINT": "your-value",
        "OPENAI_ENDPOINT": "your-value",
        "OPENAI_API_KEY": "your-value",
        "ANTHROPIC_ENDPOINT": "your-value",
        "ANTHROPIC_API_KEY": "your-value",
        "GOOGLE_API_KEY": "your-value",
        "AZURE_OPENAI_ENDPOINT": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Python 3.11 or higher - uv (fast Python package installer) - Chrome/Chromium browser
VariableDescriptionRequired
OPENROUTER_API_KEYCredential the server authenticates with.Yes
OPENROUTER_ENDPOINTConfiguration value read at startup.Optional
OPENAI_ENDPOINTConfiguration value read at startup.Optional
OPENAI_API_KEYCredential the server authenticates with.Yes
ANTHROPIC_ENDPOINTConfiguration value read at startup.Optional
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
GOOGLE_API_KEYCredential the server authenticates with.Yes
AZURE_OPENAI_ENDPOINTConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP Browser Use to Provider.
  • Use MCP Browser Use to Anthropic.
  • Use MCP Browser Use to OpenAI.

Frequently asked questions

It connects MCP Browser Use to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (Provider, Anthropic, OpenAI, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Browser Use directly.