ProBrowser
ProBrowser
Real-Browser Automation MCP Server for AI Agents — Anti-Detection
29 tools · CDP attach to your real Opera/Chrome · Human-like input · DOM + Vision hybrid
기능 • 파이프라인 • 빠른 시작 • 사용법 • 구성 • 아키텍처 • 프로젝트 구조 • 안티탐지
🌐 언어: English | Tiếng Việt
[!WARNING] 개발 및 테스트는 Arch Linux에서만 진행되었습니다 커널
Linux 7.1.5-arch1-2· DE: KDE Plasma 다른 배포판/데스크톱은 테스트되지 않았습니다 — 결과는 환경에 따라 다를 수 있습니다.
AI 에이전트(Kilo, Claude Code, …)가 Model Context Protocol을 통해 사용자의 실제 브라우저를 제어할 수 있게 해주는 MCP Server입니다. 헤드리스 모드나 임시 프로필은 없습니다 — 에이전트는 CDP로 실행 중인 Opera/Chrome에 연결되어 세션, 쿠키, 로그인을 모두 유지한 채, 인간다운 타이밍과 DOM 우선 / 비전 폴백 전략으로 브라우저를 조작합니다.
✨ 기능
기능 | 설명 |
🔌 실제 브라우저 제어 |
|
🧰 29개 MCP 도구 | 내비게이션, 탭, 클릭/입력/호버/키보드, 스크롤, 드래그 앤 드롭, DOM/텍스트 추출, JS 평가, 3가지 스크린샷 변형, CAPTCHA 툴킷, 시스템 감지. |
🕒 인간형 입력 | 가우시안 분포의 키 입력 간격(45–75 WPM), 자연스러운 mousedown↔mouseup 간격, cubic ease-out 스크롤 — 타이밍 미들웨어로 계층 구성되며 JS 주입이 전혀 없습니다. |
🔍 하이브리드 DOM + 비전 | 먼저 구조화된 DOM 추출( |
🎯 좌표 검증 | 좌표 클릭 전: 빨간 X/Y축이 정확히 O=(x,y)에서 교차하는 주석 이미지 + 하늘 프로브, 경고를 반환합니다( |
🧩 CAPTCHA 툴킷 | 내비게이션 후 reCAPTCHA/hCaptcha/Turnstile/Cloudflare를 자동 감지합니다; 에이전트의 비전으로 이미지 그리드 인식을 처리( |
🗂️ 탭 관리 | 목록/전환/열기/닫기 — 하나의 실제 브라우저에서 여러 탭을 오가는 워크플로우. |
🚨 실행 가능한 오류 | 모든 실패는 구조화된 |
📚 자가 문서화 |
|
✅ 테스트 완료 | 87개 단위 테스트(가짜 페이지 사용, 브라우저 불필요) + 실답 브라우저 통합 테스트( |
Related MCP server: selenium-mcp
🏭 Flow
┌──────────┐ ┌────────────┐ ┌─────────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐
│ CONNECT │ → │ ORIENT │ → │ SEE │ → │ PLAN │ → │ ACT │ → │ VERIFY │
│ check_ │ │ navigate + │ │ screenshot │ │ selector │ │ click / │ │ re-read │
│ browser │ │ wait idle │ │ get_dom │ │ or coords│ │ type │ │ state │
└──────────┘ └────────────┘ └─────────────┘ └──────────┘ └──────────┘ └──────────┘
│ │
▼ not running ▼ DOM miss
┌──────────────┐ ┌──────────────────────────┐
│ open_browser │ │ validate_position(x, y) │
│ (real profile│ │ → annotated O=(x,y) shot │
│ + CDP flag) │ │ → click_position(x, y) │
└──────────────┘ └──────────────────────────┘도구 실행 흐름 (예: browse_click):
agent call → pre-click Gaussian delay (~80ms)
→ PhantomWright Actionability Engine (visible? enabled? stable? unobscured?)
→ CDP Input.dispatchMouseEvent (trusted gesture, NOT element.click())
→ post-click pause (~150ms)
→ result JSON (+ optional verification screenshot)모든 browse_navigate / browse_wait 후 CAPTCHA/광고 오버레이 자동 스캔이 실행됩니다.
🚀 빠른 시작
사전 요구 사항
Arch Linux (개발/테스트 플랫폼) — 커널
7.1.5-arch1-2, KDE PlasmaPython 3.11+ —
python version로 확인Chromium 기반 브라우저 — Opera(권장), Chrome, Chromium, Brave
MCP 클라이언트 — Kilo CLI, Claude Code 또는 MCP stdio를 지원하는 모든 도구
설치
# 1. Clone
git clone https://github.com/YOUR_USER/probrowser.git
cd probrowser
# 2. Setup (venv + deps + verify)
./setup.sh
# ...or manually:
python -m venv .venv
.venv/bin/pip install -r requirements.txtMCP 클라이언트에 등록
kilo.json (프로젝트 루트):
{
"mcp": {
"probrowser": {
"type": "local",
"command": ["/absolute/path/to/probrowser/.venv/bin/python", "-m", "src"],
"enabled": true,
"timeout": 120000
}
}
}Claude Code 사용자: .mcp.json으로 동일한 서버를 사용합니다. 클라이언트를 다시 시작하면 29개의 browse_* 도구가 로드됩니다.
첫 실행
# Option A — start Opera yourself with CDP enabled:
opera --remote-debugging-port=9222
# Option B — let the agent do it (real profile, cookies intact):
browse_check_browser() # → not connected?
browse_open_browser(browser="opera")그런 다음 에이전트에게 그냥 말하면 됩니다: "open YouTube and play One of These Nights" — 연결, 내비게이션, 클릭, 재생 확인을 스스로 수행합니다.
💻 사용법
도구 그룹
그룹 | 도구 |
내비게이션 & 탭 |
|
상호작용 |
|
추출 |
|
스크린샷 |
|
CAPTCHA |
|
시스템 |
|
메타 |
|
전체 매개변수 참조: docs/tools-reference.md 또는 런타임에서 browse_help(topic="tools-reference")로 확인하세요.
기대 효과 예시
→ browse_check_browser()
← { connected: false } # nothing on :9222 yet
→ browse_open_browser(browser="opera")
← { launched: true, profile: "~/.config/opera", cdp_url: "...:9222" }
→ browse_navigate(url="https://youtube.com/...")
← { success: true, title: "..." } # auto CAPTCHA scan ran here
→ browse_get_dom(search="One of These Nights")
← { count: 10, elements: [{type: "link", selector: "a[aria-label=...]"}] }
→ browse_click(selector="a[aria-label=...]")
← { success: true }
→ browse_eval(expression="() => {const v=document.querySelector('video'); return {paused: v.paused, time: v.currentTime}}")
← { paused: false, time: 3.1 } # verified: audio is playing 🎵독립 실행 서버
PROBROWSER_CDP_URL=http://localhost:9222 .venv/bin/python -m src⚙️ 구성
런타임 설정은 모두 환경 변수로 제어됩니다:
변수 | 기본값 | 설명 |
|
| 시작 시 연결할 CDP 엔드포인트 |
|
| 도구 호출당 최대 시간(공유 이벤트 루프 보호) |
|
| CAPTCHA 하위 시스템의 전체 스위치 |
|
| 내비게이션 후 CAPTCHA/광고 자동 검사 |
| — | 2Captcha API 키(텍스트 인증 자동 해결, 그리드 해결은 에이전트 비전 사용) |
|
| API 지원 해결의 최대 대기 시간 |
MCP 클라이언트 측 설정(timeout, enabled)은 kilo.json에 있습니다 — 의도적으로 git에서 제외됩니다(.gitignore 참조).
🏛 아키텍처
┌──────────────────────────────────────────────────────────┐
│ AI Agent (Kilo / Claude Code) │
│ plan → browse_* tool call → evaluate → repeat │
└───────────────────────┬──────────────────────────────────┘
│ MCP Protocol (stdio, JSON-RPC)
▼
┌──────────────────────────────────────────────────────────┐
│ ProBrowser MCP Server (Python) │
│ tool registry (29) → action coordinator → humanize.py │
│ (Gaussian delays · WPM typing · scroll easing) │
│ analyzer/: dom_parser · hybrid_strategy · captcha │
└───────────────────────┬──────────────────────────────────┘
│ CDP — Input.dispatch* events only
▼
┌──────────────────────────────────────────────────────────┐
│ User's Real Browser (Opera/Chrome, port 9222) │
│ sessions · cookies · logins preserved │
└──────────────────────────────────────────────────────────┘주요 설계 결정
결정 | 근거 |
어투 Python으로 | PhantantWright와 |
OS 입력보다 PhantomWright | ydotool/xdotool/KWin 해킹 없음; CDP 수준 이벤트는 Wayland에서도 동작하며 사용자 입력을 차단하지 않음 |
JS 주입보다 CDP input |
|
브라우저 실행보다 connect_over_cdp | 사용자 세션이 곧 가치 — 재로그인 없음, 쿠키 유실 없음 |
비전은 AI 에이전트가 판단 | 서버는 도형/스크린샷만 추출하고, 에이전트 비전 모델이 좌표를 결정 |
📁 프로젝트 구조
probrowser/
├── main entry
│ ├── src/__main__.py # python -m src → stdio MCP loop
│ └── src/server.py # registry (29 tools) + dispatch + timeouts + captcha hooks
├── core
│ ├── src/browser/connection.py # connect_over_cdp, session persistence, page recovery
│ ├── src/browser/tab_manager.py # tab discovery / switching
│ ├── src/humanize.py # Gaussian timing middleware
│ ├── src/errors.py # classify_exception → structured error codes
│ ├── src/config.py # env-driven configuration
│ └── src/logging.py # per-action latency/success logging
├── tools (src/tools/, 29 modules)
│ ├── navigate · wait · list_tabs · switch_tab · open_tab · close_tab
│ ├── click · validate_position · click_position · type · hover · keyboard
│ ├── scroll · drag_drop
│ ├── get_dom · find · get_text · eval_js
│ ├── screenshot · screenshot_viewport · screenshot_save
│ ├── check_captcha · captcha_grid · solve_captcha
│ └── detect_browsers · check_browser · open_browser · help · list_tools
├── analyzer (src/analyzer/)
│ ├── dom_parser.py # DOM → simplified JSON (interactive + visible only)
│ ├── hybrid_strategy.py # DOM-first, vision fallback
│ └── captcha.py # CAPTCHA/ad-overlay detection
├── captcha (src/captcha/)
│ ├── grid.py # grid geometry + cropped screenshot extraction
│ └── solver.py # tile clicking + verify flow
├── docs/ # 11 topics served via browse_help()
├── tests/ # 87 unit tests + integration suite
├── AGENTS.md / CLAUDE.md # operating guide injected into agents
└── dev-phase-mcp-server.md # dev-phase principles🛡️ 안티탐지
브라우저 회피 스택
계층 | 구현 | 상세 |
엔진 | PhantomWright (패치된 Playwright 드라이버) |
|
패치 | 모든 페이지 JS 실행 이전에 스텔스 패치 | browser.chrome `, 플러그인, WebGL 커넥터, 미디어 코덱 |
입력 | CDP |
|
세션 | 실제 사용자 프로필 + 실제 IP + 확장 | 핑거프린트에서 변경되는 것이 아무것도 없음 |
타이밍 | 모든 동작에 Humanize 미들웨어 | 가우시안 지연, 자연스러운 WPM, 부드러운 스크롤 |
그대로 작동하는 것
로그인, 쿠키, 확장 프로그램 상태, IP 평판, canvas/WebGL/오디오 핑거프린트 — 브라우저가 당신의 것이므로 모든 것이 네이티브로 유지됩니다.
제한사항
공격적인 안티봇 서비스(Cloudflare Turnstile, hCaptcha 행동 분석)는 여전히 IP 평판이나 행동 지표에서 탐지될 수 있습니다. 폴백 경로: 스크린샷 + validate_position을 → click_position로, 그리고 CAPTCHA 툴킷을 사용합니다.
🧪 테스트
# Unit suite — fake pages, no browser required (87 tests)
.venv/bin/python -m pytest tests/ -q
# Integration suite — needs Opera running with CDP
.venv/bin/python -m pytest tests/test_integration.py -m integrationTính năng
기능 | 설명 |
🌐 실제 브라우저 제어 | CDP를 통해 실행 중인 Opera/Chrome에 연결 — 세션, 쿠키, 로그인 유지 |
🧰 MCP 도구 29개 | 탐색, 탭, 클릭/입력/호버/키보드, 스크롤, 드래그 앤 드롭, DOM/텍스트 추출, JS, 스크린샷, CAPTCHA |
🕒 실제 인간 시뮬레이션 | 키 사이 가우스 지연(45–75 WPM), 자연스러운 클릭 리듬, ease-out 스크롤 |
🔍 하이브리드 DOM + Vision | 구조화된 DOM 우선; 부족하면 스크린샷 + 좌표로 전환 |
🎯 좌표 검증 | 좌표 클릭 전에 X/Y 축이 O=(x,y)에서 정확히 교차하는 주석 이미지 확인 |
🧩 CAPTCHA 처리기 | 탐색 후 자동 감지; 에이전트의 비전으로 그리드 해결; 2Captcha를 통한 자동 해결 |
🚨 조치 가능한 오류 | 각 오류는 |
✅ 테스트 완료 | 단위 테스트 87개 + 실제 브라우저 통합 테스트 |
빠른 설치
git clone https://github.com/YOUR_USER/probrowser.git && cd probrowser
./setup.sh # venv + dependencies + verify
opera --remote-debugging-port=9222 # hoặc để agent tự mởkilo.json에서 서버를 선언하고(Quick Start 참조), 클라이언트를 재시작하면 끝입니다.
Arch Linux에서 🎵과 함께 제작 · MIT License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceEnables AI agents to directly control your real Chrome browser with full context including login sessions, cookies, and open tabs. It provides tools for page scanning, JavaScript execution, CDP control, screenshots, and physical mouse/keyboard input for authentic browser automation.20239MIT
- AlicenseBqualityAmaintenanceEnables browser automation through the Model Context Protocol, allowing AI agents to control Chrome, Firefox, or Edge for tasks like navigation, clicking, typing, and screenshots.3948MIT

Browseagent MCPofficial
AlicenseAqualityDmaintenanceEnables AI agents to control web browsers through the Model Context Protocol, supporting navigation, clicking, typing, and screenshots.12101MIT- AlicenseNot gradedqualityCmaintenanceEnables AI agents to create and control real, isolated browser profiles with engine-level fingerprinting and per-profile proxies, providing antidetect browsing capabilities through a Model Context Protocol interface.MIT
Related MCP Connectors
Reliable web access for AI agents: smart HTTP, rotating proxies, and full-browser rendering.
Live browser debugging for AI assistants — DOM, console, network via MCP.
A paid remote MCP for AI agent browser approval MCP, built to return verdicts, receipts, usage logs,
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/momadhuynh04/probrowser'
If you have feedback or need assistance with the MCP directory API, please join our Discord server