Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables browser automation through the Claude Chrome Extension, allowing agents to navigate websites, fill forms, take screenshots, and debug web apps via standard MCP protocols.

README.md

Claude Chrome MCP

MCP server for browser automation via the Claude Chrome Extension.

This project integrates with Anthropic's Claude Chrome Extension using the standard Chrome Native Messaging protocol to provide browser automation capabilities to MCP clients.

Quick Start

1. Install Claude Browser Extension

Install from claude.com/chrome or the Chrome Web Store

2. Install MCP Server

# Install from GitHub
bun install -g git+https://github.com/nonsleepr/claude-chrome-mcp.git

# OR clone and install locally
git clone https://github.com/nonsleepr/claude-chrome-mcp.git
cd claude-chrome-mcp
bun install
bun run build
bun link

3. Register Native Host

# Install (secure by default - auto-generates auth token)
claude-chrome-mcp --install

# Restart Chrome completely

After installation, your authentication token is displayed. Retrieve it anytime with:

claude-chrome-mcp --status

4. Configure MCP Client

Use the token from installation output or --status command.

OpenCode (~/.config/opencode/opencode.json): ``json { "mcp": { "chrome": { "type": "remote", "url": "http://localhost:3456/mcp", "enabled": true, "headers": { "Authorization": "Bearer YOUR_AUTO_GENERATED_TOKEN_HERE" } } } } ``

Claude Desktop / Generic MCP Client (claude_desktop_config.json): ``json { "mcpServers": { "chrome": { "transport": { "type": "http", "url": "http://localhost:3456/mcp", "headers": { "Authorization": "Bearer YOUR_AUTO_GENERATED_TOKEN_HERE" } } } } } ``

Configuration

Run claude-chrome-mcp --help for detailed configuration options including custom tokens, ports, CORS origins, and security settings.

Insecure Mode (Local Development Only)

claude-chrome-mcp --install --insecure

WARNING: Anyone with localhost access can control your browser.

Client config without auth: ``json { "mcp": { "chrome": { "type": "remote", "url": "http://localhost:3456/mcp", "enabled": true } } } ``

What Your Agent Can Do

  • Browse and research - navigate websites, read content, extract text
  • Fill out forms - enter text, select dropdowns, click buttons
  • Interact naturally - click, scroll, type, keyboard shortcuts
  • Search pages semantically - find elements by description (requires Claude subscription)
  • Debug web apps - read console logs, inspect network requests, run JavaScript
  • Capture and share - screenshots, record workflows as animated GIFs
  • Manage tabs - open, switch, resize

Troubleshooting

Check status and view token: ``bash claude-chrome-mcp --status ``

Port already in use: ```bash

Find what's using the port

lsof -i :3456 # Mac/Linux netstat -ano | findstr :3456 # Windows

OR install with different port

claude-chrome-mcp --install --port 8080 ```

Connection issues:

  1. Restart Chrome completely after installation
  2. Check extension is installed at chrome://extensions
  3. Verify manifest exists: ~/.config/chromium/NativeMessagingHosts/

License

MIT License - see LICENSE

Attribution

This MCP server provides integration with Anthropic's Claude Chrome Extension using standard Chrome Native Messaging protocols. The extension itself is a separate product developed by Anthropic, available at claude.com/chrome.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.