browser-agent-extension-mcp
v1.0.4
Published
MCP Server for Browser Agent Extension - Control Chrome browser via AI
Maintainers
Readme
Browser Agent MCP Server
MCP Server for controlling browser through the Browser Agent Extension.
Setup
- Install dependencies and build:
cd mcp-server
npm install
npm run build- Add to Claude Desktop config (
%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"browser-agent": {
"command": "node",
"args": ["C:/07.dev/browser-agent-extension/mcp-server/dist/index.js"]
}
}
}Open the browser extension side panel to establish WebSocket connection.
Restart Claude Desktop.
Available Tools
browser_navigate- Navigate to a URLbrowser_click- Click on an element or coordinatesbrowser_type- Type text into an elementbrowser_scroll- Scroll the pagebrowser_screenshot- Take a screenshotbrowser_extract- Extract content from an elementbrowser_evaluate- Execute JavaScriptbrowser_get_page_info- Get current page infobrowser_get_tabs- List all open tabsbrowser_switch_tab- Switch to a specific tabbrowser_press_key- Press a keyboard keybrowser_select_option- Select dropdown optionbrowser_go_back- Navigate backbrowser_go_forward- Navigate forwardbrowser_reload- Reload page
