Cc Chrome Agent — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Cc Chrome Agent (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.
MCP server to control Chrome browsers on your network via Claude's Chrome extension.
Control any Chrome browser — locally or on remote machines — directly from Claude Code, Claude Desktop, or any MCP client. Navigate pages, fill forms, click buttons, take screenshots, run JavaScript, and more.
Claude Code / Claude Desktop / Any MCP Client
|
| MCP (stdio)
v
cc-chrome-agent (this server)
|
| Socket protocol (4-byte length-prefix + JSON)
v
Chrome + Claude Extension (local or remote)The Claude Chrome extension exposes browser automation tools via a local Unix socket. This MCP server connects to that socket and makes those tools available to any MCP client.
For remote Chrome instances, a TCP bridge server proxies the socket over the network, with optional mDNS discovery.
# From GitHub:
pip install git+https://github.com/delltrak/cc_chrome_agent.git
# With network discovery (mDNS):
pip install "cc-chrome-agent[network] @ git+https://github.com/delltrak/cc_chrome_agent.git"Or from source:
git clone https://github.com/delltrak/cc_chrome_agent
cd cc_chrome_agent
pip install -e .claude mcp add cc-chrome-agent -- cc-chrome-agentJust ask Claude to interact with your browser:
> Open github.com and tell me the trending repos today
> Fill the login form with [email protected] and click submit
> Take a screenshot of the current page
> Run document.title in the browser consoleClaude Code will use the MCP tools automatically.
If the browser is closed, cc-chrome-agent now tries to launch a local Chromium browser automatically and waits for the Claude bridge socket to appear. If the browser is already open, it reuses the existing local bridge.
| Tool | Description |
|---|---|
navigate | Go to a URL, or navigate back/forward |
find | Find elements by natural language ("login button", "search bar") |
form_input | Fill form fields using element ref_ids |
computer | Mouse clicks, keyboard input, screenshots, scrolling |
javascript | Execute JavaScript in the page context |
screenshot | Capture a screenshot of the current tab |
| Tool | Description |
|---|---|
read_page | Get the accessibility tree with element ref_ids |
get_page_text | Get the full text content of the page |
preview_snapshot | Lightweight accessibility tree snapshot |
read_console | Read browser console messages |
read_network | Inspect network requests |
| Tool | Description |
|---|---|
list_tabs | List all open tabs |
create_tab | Open a new tab |
resize_window | Resize the browser window |
| Tool | Description |
|---|---|
discover_bridges | Find Chrome instances on the local network |
connect_bridge | Connect to a local or remote Chrome |
connection_status | Check current connection status |
When a tool needs local Chrome and no bridge socket exists yet, the server will:
Important caveat: the Claude extension still needs to be installed and activated on that machine. On a fresh install, open the extension sidebar once so the native host socket can be created.
Control Chrome on remote machines (e.g., a test server, a colleague's desktop).
# Install and start the bridge server:
pip install cc-chrome-agent
cc-chrome-agent serve
# With specific port:
cc-chrome-agent serve --port 9000The bridge server:
> Discover Chrome bridges on the network
> Connect to the bridge at 192.168.1.20
> Navigate to example.com and take a screenshotOr discover from the command line:
cc-chrome-agent discover
cc-chrome-agent discover --scan # TCP subnet scan (no mDNS needed)
cc-chrome-agent discover --json # JSON output# Register the MCP server:
claude mcp add cc-chrome-agent -- cc-chrome-agent
# With verbose logging:
claude mcp add cc-chrome-agent -- cc-chrome-agent --verbose
# Remove:
claude mcp remove cc-chrome-agentAdd to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"cc-chrome-agent": {
"command": "cc-chrome-agent"
}
}
}{
"mcpServers": {
"cc-chrome-agent": {
"command": "python3",
"args": ["-m", "cc_chrome_agent"]
}
}
}When Claude Code uses Chrome tools for the first time, the extension asks whether to "Act without asking" or "Ask before acting". To skip this prompt and always allow actions automatically, set this environment variable:
# Add to your ~/.zshrc or ~/.bashrc:
export CLAUDE_CHROME_PERMISSION_MODE="skip_all_permission_checks"Available modes:
| Mode | Behavior |
|---|---|
ask | Prompt before each action (default) |
skip_all_permission_checks | Act without asking |
follow_a_plan | Follow a pre-approved plan |
Use these when the browser is not in a default location or when you want tighter startup control:
CC_CHROME_AGENT_BROWSER_COMMAND="/custom/browser/bin/chrome --profile-directory=Default"
CC_CHROME_AGENT_BROWSER_APP="Google Chrome"
CC_CHROME_AGENT_START_URL="about:blank"
CC_CHROME_AGENT_BOOT_TIMEOUT="20"
CC_CHROME_AGENT_AUTO_LAUNCH="1"CC_CHROME_AGENT_BROWSER_COMMAND: full custom launch command, used firstCC_CHROME_AGENT_BROWSER_APP: preferred browser app or executable nameCC_CHROME_AGENT_START_URL: URL opened during auto-launchCC_CHROME_AGENT_BOOT_TIMEOUT: seconds to wait for the bridge socketCC_CHROME_AGENT_AUTO_LAUNCH: set to 0 to disable browser auto-launchcc-chrome-agent Start MCP server (stdio)
cc-chrome-agent serve Start TCP bridge for remote access
cc-chrome-agent discover Find Chrome bridges on the network
cc-chrome-agent --version Show version
cc-chrome-agent --verbose Enable debug loggingserve options--port PORT TCP port (default: 8765)
--sock PATH Unix socket path (auto-detected)
--no-mdns Disable mDNS advertisement
--launch-timeout Seconds to wait for a bridge after auto-launch
--no-launch Disable local browser auto-launchdiscover options--timeout SECS Discovery timeout (default: 3.0)
--scan Force TCP subnet scan
--json JSON outputAny Chromium-based browser that supports the Claude extension:
┌─────────────────────────────────────────────────┐
│ MCP Client │
│ (Claude Code / Desktop / SDK) │
└──────────────────┬──────────────────────────────┘
│ MCP (stdio, JSON-RPC 2.0)
│
┌──────────────────▼──────────────────────────────┐
│ cc-chrome-agent │
│ │
│ ┌─────────────┐ ┌────────────┐ ┌──────────┐ │
│ │ MCP Server │ │ Bridge │ │ Discovery│ │
│ │ (tools) │──│ (protocol) │ │ (mDNS/ │ │
│ │ │ │ │ │ scan) │ │
│ └─────────────┘ └─────┬──────┘ └──────────┘ │
└──────────────────────────┼──────────────────────┘
│
┌────────────┼────────────┐
│ Local │ Remote │
│ │ │
┌────────▼───┐ ┌─────▼──────┐ │
│ Unix Socket│ │ TCP:8765 │ │
│ /tmp/... │ │ (bridge) │ │
└────────┬───┘ └─────┬──────┘ │
│ │ │
┌────────▼────────────▼───────┐ │
│ Chrome + Claude Extension│ │
│ (native host socket) │ │
└─────────────────────────────┘ │zeroconf for mDNS network discoveryMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.