Arche Browser MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add arche-browser -- uvx arche-browser
README.md

MCP Server for Browser Automation and Full Local PC Control.

Arche Browser

MCP Server for Browser Automation and Full Local PC Control.

Control a real Chrome browser AND your entire computer from Claude Code or any MCP client.

Features

  • Full Browser Control: Navigation, clicks, typing, screenshots, and more
  • Full PC Control: Shell commands, Python execution, file system, clipboard, processes
  • Real Browser: Uses your actual Chrome with cookies, extensions, login sessions
  • Remote Access: Control browser/PC on any machine via SSE transport
  • Token Authentication: Secure remote access with auto-generated tokens
  • Minimal Design: Just a few powerful primitives that can do anything

Design Philosophy

Inspired by Eric Gamma's principles: Simple, Flexible, Powerful

Instead of hundreds of specific tools, Arche provides a few powerful primitives:

Primitive What it does What you can achieve
shell() Execute any shell command Volume, reboot, programs, services, ANYTHING
python_exec() Execute Python code Camera, Excel, AI, complex logic, ANYTHING
screen_capture() Desktop screenshot Visual feedback for AI

With just shell and python_exec, AI can literally control EVERYTHING on your computer.

Installation

# From PyPI
pip install arche-browser

# From GitHub
pip install git+https://github.com/GizAI/arche-browser.git

# One-liner (no install)
uvx arche-browser

Usage

Browser Only (Default)

arche-browser

Claude Code config:

{"mcpServers": {"browser": {"command": "arche-browser"}}}

Full PC Control

arche-browser --local

Claude Code config:

{"mcpServers": {"arche": {"command": "arche-browser", "args": ["--local"]}}}

PC Control Only (No Browser)

arche-browser --local --no-browser

Remote Access (SSE)

On the machine with Chrome:

arche-browser --sse --port 8080 --local

# Output:
# [*] Auth: ENABLED
# [*] Token: abc123...
# [*] Connect URL: http://localhost:8080/sse?token=abc123...

On Claude Code:

{"mcpServers": {"remote": {"url": "http://YOUR_IP:8080/sse?token=YOUR_TOKEN"}}}

Local Control Tools

Core Primitives

Tool Description
shell(command) Execute shell command (bash/cmd/powershell)
python_exec(code) Execute Python code with full system access
screen_capture(path) Capture desktop screenshot

Convenience Tools

Tool Description
file_read(path) Read file content
file_write(path, content) Write file content
file_list(path, pattern) List directory contents
file_delete(path) Delete file or directory
file_copy(src, dst) Copy file or directory
file_move(src, dst) Move/rename file or directory
clipboard_get() Get clipboard content
clipboard_set(content) Set clipboard content
system_info() Get OS, CPU, memory, disk info
process_list() List running processes
process_kill(pid/name) Kill a process

What You Can Do

# Volume control (Windows)
shell("powershell (Get-AudioDevice -Playback).SetMute($false)")

# Take a photo with webcam
python_exec("""
import cv2
cap = cv2.VideoCapture(0)
ret, frame = cap.read()
cv2.imwrite("photo.jpg", frame)
cap.release()
""")

# Create Excel spreadsheet
python_exec("""
import openpyxl
wb = openpyxl.Workbook()
ws = wb.active
ws['A1'] = 'Sales Report'
ws['A2'] = 1000
wb.save('report.xlsx')
""")

# System maintenance
shell("cleanmgr /d C:")  # Windows disk cleanup
shell("sudo apt autoremove")  # Linux cleanup

# Reboot computer
shell("shutdown /r /t 60")  # Windows
shell("sudo reboot")  # Linux

# Kill a program
process_kill(name="notepad.exe")

Browser Tools

Navigation

Tool Description
goto(url) Navigate to URL
get_url() Get current URL
get_title() Get page title
reload() Reload page
go_back() Go back in history
go_forward() Go forward in history

DOM & Input

Tool Description
get_text(selector) Get element text
get_html(selector) Get element HTML
click(selector) Click element
type_text(selector, text) Type into input
select_option(selector, value) Select dropdown
check_box(selector, checked) Check/uncheck
scroll_to(x, y) Scroll page

Screenshots & PDF

Tool Description
screenshot(path) Take screenshot
pdf(path) Generate PDF

Cookies & Storage

Tool Description
get_cookies() Get cookies
set_cookie(name, value) Set cookie
storage_get(key) Get localStorage
storage_set(key, value) Set localStorage

JavaScript

Tool Description
evaluate(script) Execute JS

CLI Options

arche-browse

Tools (34)

shellExecute any shell command
python_execExecute Python code with full system access
screen_captureCapture desktop screenshot
file_readRead file content
file_writeWrite file content
file_listList directory contents
file_deleteDelete file or directory
file_copyCopy file or directory
file_moveMove/rename file or directory
clipboard_getGet clipboard content
clipboard_setSet clipboard content
system_infoGet OS, CPU, memory, disk info
process_listList running processes
process_killKill a process
gotoNavigate to URL
get_urlGet current URL
get_titleGet page title
reloadReload page
go_backGo back in history
go_forwardGo forward in history
get_textGet element text
get_htmlGet element HTML
clickClick element
type_textType into input
select_optionSelect dropdown
check_boxCheck/uncheck
scroll_toScroll page
screenshotTake screenshot
pdfGenerate PDF
get_cookiesGet cookies
set_cookieSet cookie
storage_getGet localStorage
storage_setSet localStorage
evaluateExecute JS

Configuration

claude_desktop_config.json
{"mcpServers": {"arche": {"command": "arche-browser", "args": ["--local"]}}}

Try it

Navigate to google.com, search for 'latest AI news', and summarize the first three results.
Check my system memory and CPU usage, then list all currently running processes.
Read the file 'notes.txt' from my desktop, copy its content to the clipboard, and then create a new file named 'backup.txt' with that content.
Take a screenshot of the current browser page and save it as 'page_capture.png'.
Execute a Python script to generate a simple Excel report with sales data.

Frequently Asked Questions

What are the key features of Arche Browser?

Full browser control including navigation, clicks, typing, and cookies. Comprehensive PC control via shell commands and Python execution. Remote access capabilities via SSE transport with token authentication. File system management and clipboard interaction. System monitoring and process management.

What can I use Arche Browser for?

Automating repetitive web tasks using your existing Chrome session and cookies. Performing system maintenance tasks like disk cleanup or process management via AI. Generating complex reports or data files using Python scripts directly on the local machine. Remotely controlling a browser or PC environment for headless automation tasks.

How do I install Arche Browser?

Install Arche Browser by running: pip install arche-browser

What MCP clients work with Arche Browser?

Arche Browser works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Arche Browser docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare