Agent Browser Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Agent Browser Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that provides browser automation capabilities through Vercel's agent-browser. This enables LLMs to interact with web pages using a fast Rust CLI with Node.js fallback.
# 1. Install agent-browser CLI
npm install -g agent-browser && agent-browser install
# 2. Add to Claude Desktop (or your MCP client)
npx @nxavis/agent-browser-mcpThen use tools like browser_navigate, browser_click, browser_snapshot to control the browser from your AI agent.
npm install @nxavis/agent-browser-mcpOr run directly with npx:
npx @nxavis/agent-browser-mcp# Install agent-browser globally
npm install -g agent-browser
# Download Chromium browser
agent-browser install
# On Linux, install system dependencies if needed:
# agent-browser install --with-deps⚠️ Windows Note: agent-browser currently has known issues on Windows with native shells (PowerShell/CMD). For Windows users, we recommend using WSL (Windows Subsystem for Linux) until the upstream issue is resolved.
Add to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"agent-browser": {
"command": "npx",
"args": ["@nxavis/agent-browser-mcp"]
}
}
}Add to your VS Code settings (JSON):
{
"mcp": {
"servers": {
"agent-browser": {
"command": "npx",
"args": ["@nxavis/agent-browser-mcp"]
}
}
}
}Add to your .mcp.json file in your project root or home directory:
{
"mcpServers": {
"agent-browser": {
"command": "npx",
"args": ["@nxavis/agent-browser-mcp"]
}
}
}Or use the global configuration at ~/.mcp.json:
{
"mcpServers": {
"agent-browser": {
"command": "npx",
"args": ["@nxavis/agent-browser-mcp"],
"env": {
"AGENT_BROWSER_PATH": "/usr/local/bin/agent-browser"
}
}
}
}If agent-browser is not in your PATH, specify its location:
{
"mcpServers": {
"agent-browser": {
"command": "npx",
"args": ["@nxavis/agent-browser-mcp"],
"env": {
"AGENT_BROWSER_PATH": "/path/to/agent-browser"
}
}
}
}browser_navigate - Navigate to a URLbrowser_go_back - Navigate back in browser historybrowser_go_forward - Navigate forward in browser historybrowser_reload - Reload the current pagebrowser_click - Click on an elementbrowser_fill - Fill a text input fieldbrowser_type - Type text character by characterbrowser_hover - Hover over an elementbrowser_scroll - Scroll the page or a specific elementbrowser_select - Select an option from a dropdownbrowser_check - Check a checkbox or radio buttonbrowser_uncheck - Uncheck a checkboxbrowser_press - Press a keyboard keybrowser_get_text - Get text content from an element or pagebrowser_get_html - Get HTML contentbrowser_get_attribute - Get an attribute valuebrowser_get_url - Get the current page URLbrowser_get_title - Get the current page titlebrowser_snapshot - Get accessibility tree snapshotbrowser_new_session - Create a new isolated browser sessionbrowser_close_session - Close a browser sessionbrowser_screenshot - Take a screenshotbrowser_pdf - Generate a PDF of the current pageFor a complete list of tools and their parameters, see the original documentation.
# Clone the repository
git clone https://github.com/nxavis/agent-browser-mcp.git
cd agent-browser-mcp
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Watch mode
npm run devMIT
This package is based on agent-browser-mcp by minhlucvan, adapted for the @nxavis ecosystem.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.