SkillAgentSearch skills...

brijio

Brijio connects remote AI agents to the browser session you already control.

Install / Use

claude mcp add redvex -- npx -y github:redvex/brijio

If the server publishes to npm under a different name, use that package instead — check the repo README.

About this skill
🔌

MCP Server

Model Context Protocol server

Quality Score

80/100

Category

Automation

Supported Platforms

Claude Code
Claude Desktop

Brijio

Remote agents. Local browser. No shared credentials.

<p align="center"> <img src=".github/images/hero.png" alt="Brijio — Remote agents. Local browser. No shared credentials." width="800" /> </p>

Brijio connects remote AI agents to the browser session you already control.

Instead of launching a separate browser, cloning sessions, exporting cookies, or streaming screenshots, Brijio allows agents to collaborate with the browser you're already using.

The result is faster, safer, and more privacy-friendly access to the authenticated web.

Brijio is open source under AGPLv3. See LICENSE and COMMERCIAL-LICENSING.md.


Why Brijio?

Most AI browser tools start with the assumption that the agent needs its own browser.

But in the real world, you're already:

  • logged into Workday
  • logged into Jira
  • logged into GitHub
  • logged into Gmail
  • logged into your company's internal tools

The challenge isn't giving a browser to the agent.

The challenge is allowing the agent to collaborate with the browser session you already control.

That's what Brijio solves.


Key Principles

Authenticated Browser First

Use the browser session you're already using.

  • No cookie export
  • No session replication
  • No browser cloning

Remote Agent Friendly

Run agents wherever you want:

  • Claude Desktop
  • Codex
  • Gemini CLI
  • Hermes
  • OpenClaw
  • Cloud-hosted agents

Your browser remains local.

Privacy By Design

Brijio is intentionally reactive.

The browser does not continuously stream:

  • screenshots
  • page updates
  • DOM changes
  • browser history

Agents must explicitly request information.

Progressive Disclosure

Agents receive only the information they need.

Instead of sending:

  • screenshots
  • massive DOM trees
  • full browser state

Brijio provides structured context first, then content when requested.

Human In Control

The browser remains under user control.

The agent only receives access through explicit requests.


Architecture

Agent
  ↓
MCP Server
  ↓
Brijio Relay
  ↓
Browser Extension
 ↓
Browser Session

The browser remains the source of truth.

flowchart LR
 Agent[AI Agent] --> MCP[MCP Server]
 MCP --> WS[WebSocket Server]
 WS --> Ext[Browser Extension]
 Ext --> Browser[Current Browser Tab]

 Browser --> Ext
 Ext --> WS
 WS --> MCP
 MCP --> Agent

Capability Matrix

  • Read page context ✅
  • Read page content ✅
  • Read selected text ✅
  • Fill forms ✅
  • Trigger actions ✅
  • Read page metadata ✅
  • Structured page understanding ✅
  • Remote agent access ✅
  • File uploads 🚧
  • End-to-end encryption 🚧
  • Multi-tab workflows 🚧
  • Fine-grained permissions 🚧
  • Cookie export ❌
  • Session cloning ❌
  • Continuous browser streaming ❌
  • Browser recording ❌

See docs/project/CAPABILITY_MATRIX.md for the full capability contract.


Communication Flow

The extension is reactive. It should answer specific requests and return specific results. It should not stream page state continuously.

sequenceDiagram
 participant User
 participant Agent as AI Agent
 participant MCP as MCP Server
 participant WS as WebSocket Server
 participant Ext as Browser Extension
 participant Tab as Browser Tab

 User->>Ext: Start bridge
 Ext->>WS: auth role=extension token
 WS-->>Ext: auth_success
 WS->>Ext: browser_presence_request
 Ext-->>WS: browser_presence_announce
 Agent->>MCP: tools/call list_browsers
 MCP->>WS: auth role=mcp token
 WS-->>MCP: auth_success
 MCP->>WS: list_browsers
 WS-->>MCP: browser_list
 Agent->>MCP: resources/read browser://page/current
 MCP->>WS: get_page_context target optional
 WS->>Ext: get_page_context
 Ext->>Tab: Read active tab URL and title
 Tab-->>Ext: URL and title
 Ext-->>WS: page_context_response
 WS-->>MCP: page_context_response
 MCP-->>Agent: Structured resource result

Status

This project has the local WebSocket transport, Chrome extension page context and action handling, MCP resources and tools, and local pairing/presence routing in place. Safari Web Extension support with full Chrome feature parity is also implemented (ADR 0019), using shared logic from @brijio/shared. The current working milestone is:

  1. A local Chrome extension manually connects to the WebSocket server.
  2. The extension authenticates with a local pairing token and announces browser presence.
  3. The MCP server authenticates with the same token, lists online browser instances, and routes explicit page reads or actions to one browser.
  4. The Safari extension has the same browser capabilities as Chrome, using shared logic and Safari-specific adapters.

Features beyond that milestone require an approved ADR before implementation.


MCP Resources And Tools

The current MCP server exposes page resources:

  • browser://page/current, named current-page-context
  • browser://page/current/content/{index}, named current-page-content

It also exposes tools for explicit page reads and discrete browser actions:

  • list_browsers
  • read_current_page
  • click_element
  • fill_input
  • fill_editable
  • set_checked
  • select_options
  • submit_form

Resource and tool results use predictable structured responses:

type ToolResult<T> =
  | { ok: true; data: T }
  | { ok: false; error: { code: string; message: string } };

Running Brijio

Option 1: npx (recommended for quick use)

npx @brijio/mcp

This starts both the WebSocket server and the MCP server with zero config. On startup, auto-generated tokens are printed to the console:

🚀 Brijio ready!

  WebSocket:    ws://localhost:8787
  MCP:         http://localhost:8788/mcp

  Pairing Token:    dG9rZW4x  [auto-generated]
  MCP Auth Token:   dG9rZW4y  [auto-generated]

Copy these tokens — they change on every restart unless you persist them. To persist tokens, create a .env file in the working directory:

BRIJIO_PAIRING_TOKEN=your-secure-token-here
MCP_HTTP_AUTH_TOKEN=your-mcp-token-here

Or set environment variables directly:

BRIJIO_PAIRING_TOKEN=my-secret npx @brijio/mcp

The MCP endpoint is then available at http://localhost:8788/mcp.

Option 2: Daemon (recommended for persistent use)

Install Brijio as a background service that starts on login:

npx @brijio/mcp install

This creates a LaunchAgent (macOS) or systemd user unit (Linux) that keeps Brijio running. Tokens are generated and stored in ~/.brijio/.env.

npx @brijio/mcp start     # start the daemon
npx @brijio/mcp stop      # stop the daemon
npx @brijio/mcp restart   # restart the daemon
npx @brijio/mcp status    # check daemon and health status
npx @brijio/mcp logs      # view recent logs
npx @brijio/mcp logs --live  # stream logs in real-time
npx @brijio/mcp uninstall  # remove the daemon service

Daemon commands:

| Command | Description | | -------------------------------------- | ---------------------------------------------- | | install [--ws-port N] [--mcp-port N] | Install daemon, generate tokens, start service | | uninstall | Remove service (preserves config and logs) | | start | Start the daemon | | stop | Stop the daemon | | restart | Restart the daemon | | status | Show daemon state and health check results | | logs [--lines N] [--live] | View or stream daemon logs |

Config is stored in ~/.brijio/.env. To fully remove all Brijio daemon data: rm -rf ~/.brijio.

Option 3: Docker

docker run -p 8787:8787 -p 8788:8788 \
  -e BRIJIO_PAIRING_TOKEN=my-pairing-token \
  -e MCP_HTTP_AUTH_TOKEN=my-mcp-token \
  brijio/mcp

Or with Docker Compose — copy .env.example to .env, fill in your tokens, then:

docker compose up

Both ports must be exposed: 8787 (WebSocket relay) and 8788 (MCP HTTP server). The Docker image bundles both services in a single container — no need to run separate images.

Connecting Your Browser

  1. Install the Brijio Chrome extension
  2. Click the Brijio icon in your toolbar
  3. Enter the WebSocket URL (default: ws://localhost:8787) and the pairing token
  4. Click Connect

Connecting Your AI Agent

Configure your MCP client (Claude Desktop, Hermes, etc.) to connect to the MCP server:

{
  "mcpServers": {
    "brijio": {
      "type": "streamableHttp",
      "url": "http://localhost:8788/mcp",
      "headers": {
        "Authorization": "Bearer my-mcp-token"
      }
    }
  }
}

Environment Variables

| Variable | Default | Description | | --------------------------- | --------------------- | --------------------------------- | | WEBSOCKET_HOST | 0.0.0.0 | WebSocket server bind address | | WEBSOCKET_PORT | 8787 | WebSocket server port | | BRIJIO_PAIRING_TOKEN | auto-generated | Token for extension ↔ server auth | | MCP_HTTP_HOST | 0.0.0.0 | MCP server bind address | | MCP_HTTP_PORT | 8788 | MCP server port | | MCP_HTTP_PATH | /mcp | MCP server path | | MCP_HTTP_AUTH_TOKEN | auto-generated | Bearer token for MCP clients | | BRIJIO_WS_URL | ws://127.0.0.1:8787 | WS URL for MCP → relay connection | | BRIJIO_REQUEST_TIMEOUT_MS | 5000 | Timeout for forwarded requests |

Auto-generated tokens are ephemeral — they change on restart. For production or persistent setups, always set BRIJIO_PAIRING_TOKEN and MCP_HTTP_AUTH_TOKEN explicitly.

For Tailscale:

MCP_HTTP_HOST=0.0.0.0

No additional host allowlists are needed — auth tokens are the security boundary, not IP allowlists. See the security model below for details.


Local Development

Prerequisites

  • Node.js ≥ 20
  • pnpm ≥ 10 (corepack enable or npm i -g pnpm)

Build

Build all workspace packages (shared package, WebSocket server, MCP server, and both browser extensions):

pnpm install
pnpm build

To build only the server packages:

pnpm --filter @brijio/websocket build
pnpm --filter @brijio/mcp build

Install & Start

Copy the environment template and generate tokens:

cp .env.example .env
pnpm run token     # generates BRIJIO_PAIRING_TOKEN

Edit .env to set BRIJIO_PAIRING_TOKEN and MCP_HTTP_AUTH_TOKEN with your own values.

Start both servers with hot-reload:

pnpm dev

Or start individual servers:

pnpm --filter @brijio/websocket dev   # WebSocket relay on ws://0.0.0.0:8787
pnpm --filter @brijio/mcp dev         # MCP server on http://0.0.0.0:8788/mcp

For a production-style build + run:

pnpm build
node servers/mcp/dist/bin/brijio.js

Or use the daemon lifecycle commands from source:

pnpm brijio install   # install as a background service
pnpm brijio start      # start the daemon
pnpm brijio status     # check daemon health

Docker-based local development:

docker compose --profile runtime up --build

The runtime profile includes a demo page served over HTTP:

http://127.0.0.1:${TEST_PAGE_PORT:-8080}/

Configure the same pairing token in the Chrome extension setup page along with the local WebSocket URL.

Generate a separate MCP HTTP bearer token and set it as MCP_HTTP_AUTH_TOKEN. MCP clients connect to:

http://127.0.0.1:${MCP_HTTP_PORT:-8788}${MCP_HTTP_PATH:-/mcp}

Testing The WebSocket Server With

Truncated for display — read the full file on GitHub.

Related Skills

View on GitHub
GitHub Stars3
CategoryAutomation
Updated18h ago
Forks0

Languages

TypeScript

Security Score

87/100

Audited on Aug 16, 2026

2 low