pinchtab
ActiveDescription
Pinchtab is a high-performance browser automation bridge for AI agents with multi-instance orchestration, stealth injection, and a real-time dashboard.
Key Features
- Multi-instance orchestration - one control plane manages hundreds of isolated browser sessions
- Stealth fingerprint injection - built-in anti-detection module bypasses popular anti-bot systems
- Real-time dashboard - web UI shows session status, screenshots, and network traffic live
- Standard agent interfaces - REST and WebSocket APIs let LangChain and other agents drive browsers directly
- Containerized deployment - single docker-compose brings up the whole fleet
- Session recording and replay - record browser sessions and replay them for regression testing
Use Cases
Tags
Categories
Quick Start
# Launch the Pinchtab Docker fleet
git clone https://github.com/pinchtab/pinchtab.git
cd pinchtab
docker compose up -d
# Control plane listens on http://localhost:8080 by default
# Real-time dashboard at http://localhost:8080/dashboard
# Start a browser session via REST
curl -X POST http://localhost:8080/api/v1/sessions \
-H 'Content-Type: application/json' \
-d '{"profile": "default", "start_url": "https://example.com"}'
# Drive the browser over WebSocket from your agent
wscat -c ws://localhost:8080/api/v1/sessions/<id>/ws
# send: {"action":"navigate","url":"https://example.com/login"}