mcp-browser-use-tools
This package vendors a subset of [browser-use](
Overview
This package vendors a subset of the browser-use library with minimal dependencies exposed as an mcp-server, allowing users to create their own agent loops.
To use this package, integrate it into your Python project and utilize the provided tools to automate browser tasks such as searching, navigating, and interacting with web elements.
- Minimal dependencies for easy integration - Exposes internal tools for custom agent loops - Supports various browser automation tasks like searching, clicking, and scrolling
- Automating repetitive web tasks for data extraction.
- Creating custom web scraping agents.
- Building automated testing scripts for web applications.
Add to your AI client
Use these steps to connect mcp-browser-use-tools 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": {
"mcp-browser-use-tools-phact": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-tools-phact"
]
}
}
}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": {
"mcp-browser-use-tools-phact": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-tools-phact"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-browser-use-tools-phact": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-tools-phact"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-browser-use-tools-phact": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-tools-phact"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-browser-use-tools-phact": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-tools-phact"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-browser-use-tools-phact": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-tools-phact"
]
}
}
}FAQ
Is this package a full browser agent?
No, it only exposes a subset of tools for users to create their own agent loops.
What programming language is this package written in?
This package is written in Python.
Can I use this package for web scraping?
Yes, it can be used for web scraping and automating browser interactions.