mcp-browser-use: MCP server for browser-use
MCP server for browser-use
Overview
mcp-browser-use is a server designed to connect any MCP client (like Claude or Cursor) with the browser using the browser-use framework. It allows users to leverage existing LLMs without the need for additional API keys.
To use mcp-browser-use, simply add the following command to your MCP client's configuration: bash uvx mcp-browser-use Make sure to provide the full path to uvx to ensure the MCP client starts the server correctly.
- Seamless integration with existing MCP clients. - No additional costs for LLM API keys. - Easy setup with a simple command.
- Connecting AI models to web applications for enhanced functionality.
- Enabling browser-based interactions for various MCP clients.
- Facilitating the development of AI-driven web tools.
Add to your AI client
Use these steps to connect mcp-browser-use: MCP server for browser-use 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-vinayak-mehta": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-vinayak-mehta"
]
}
}
}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-vinayak-mehta": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-vinayak-mehta"
]
}
}
}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-vinayak-mehta": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-vinayak-mehta"
]
}
}
}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-vinayak-mehta": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-vinayak-mehta"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-browser-use-vinayak-mehta": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-vinayak-mehta"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-browser-use-vinayak-mehta": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-browser-use-vinayak-mehta"
]
}
}
}FAQ
Is mcp-browser-use free to use?
Yes! mcp-browser-use is free and open-source.
What programming language is mcp-browser-use written in?
mcp-browser-use is written in Python.
How can I contribute to mcp-browser-use?
Contributions are welcome! You can submit a pull request on the GitHub repository.