Browser-Use MCP Server enables AI assistants to browse the web through a Model Context Protocol (SSE transport) interface. It leverages Playwright to automate browser interactions, allowing AI tools like Cursor, Claude Desktop, and Claude Code to perform web searches, extract information, and interact with websites. The server includes a VNC capability that lets users observe the browser actions in real-time.
Browser-Use MCP Server provides a powerful way for AI assistants to interact with web browsers. Using the Model Context Protocol (MCP) with Server-Sent Events (SSE) transport, this tool allows AI systems to navigate websites, extract information, and perform complex web tasks.
Install UV package manager:
curl -LsSf https://astral.sh/uv/install.sh | sh
Install dependencies:
uv sync
uv pip install playwright
uv run playwright install --with-deps --no-shell chromium
Configure environment variables:
Create a .env
file with the following:
OPENAI_API_KEY=[your api key]
CHROME_PATH=[optional: path to custom chrome build]
Start the server:
uv run server --port 8000
You can also run the server in a Docker container:
docker build -t browser-use-mcp-server .
docker run --rm -p8000:8000 -p5900:5900 browser-use-mcp-server
For production environments, you can set a custom VNC password:
echo "your-secure-password" > vnc_password.txt
docker run -v $(pwd)/vnc_password.txt:/run/secrets/vnc_password your-image-name
Add the MCP server to your AI client by configuring it with the URL http://localhost:8000/sse
.
Create or edit ./.cursor/mcp.json
:
{
"mcpServers": {
"browser-use-mcp-server": {
"url": "http://localhost:8000/sse"
}
}
}
Edit the configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Add the same MCP server configuration as shown above.
Use the same configuration format in the appropriate settings location.
The MCP server provides the following tools:
To view the browser actions in real-time:
Clone the noVNC repository:
git clone https://github.com/novnc/noVNC
cd noVNC
Start the proxy:
./utils/novnc_proxy --vnc localhost:5900
Connect to the VNC server using a web browser (default password: browser-use)
Once connected, you can ask your AI assistant to perform web tasks like:
For issues or questions, reach out at https://cobrowser.xyz/