npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

exe-browser-mcp-pro

v1.2.1

Published

Model Context Protocol server that bridges Claude-style MCP clients to a live browser tab via exe-browser

Readme

exe-browser MCP Server

This package exposes the CLI that bridges Model Context Protocol (MCP) clients to a live browser tab. It works together with the exe-browser MCP browser extension (Chrome/Firefox) so IDEs and agents can automate the tab you explicitly connect.

  • Transparent & local-first – the CLI and extension only communicate on localhost; no browsing data is sent elsewhere.
  • Feature-rich tooling – 47 MCP tools: DOM snapshots, diffs, humanized input, social media workflows, scheduling, campaign management, and more.
  • Cross-client – compatible with Claude Code, OpenCode, Cursor, Windsurf, MCP Inspector, or any other MCP-aware client.
  • Persistent state – SQLite-backed schedules, campaigns, and error tracking survive server restarts.
  • Daemon mode – automated scheduling with agent spawning for hands-off engagement.

Installation

npm install -g exe-browser-mcp-pro
# or run without installing
npx exe-browser-mcp --ws-port 9010

Usage

  1. Install and load the exe-browser MCP browser extension.
  2. Start the server:
    exe-browser-mcp --ws-port 9010
  3. Connect the tab via the extension popup and configure your MCP client to call the CLI.

The CLI communicates over stdio, so any MCP client can spawn it and exchange requests/responses.

Daemon Mode

For automated, hands-off scheduling, use daemon mode. The server checks for due schedule entries every minute and spawns agent sessions to execute them.

# Start with daemon mode (uses Claude CLI by default)
exe-browser-mcp --ws-port 9010 --daemon

# Use OpenCode as the agent
exe-browser-mcp --ws-port 9010 --daemon --agent-cmd opencode

# Specify a custom state DB path
exe-browser-mcp --ws-port 9010 --daemon --state-db /path/to/state.db

State is persisted to ~/.exe-browser/state-{port}.db by default in daemon mode.

CLI Flags

| Flag | Description | Default | |---|---|---| | --ws-port <port> | WebSocket port for browser extension | 9010 | | --http-port <port> | Optional Streamable HTTP endpoint | (disabled) | | --daemon | Enable daemon mode (auto-execute scheduled entries) | (disabled) | | --agent-cmd <cmd> | Agent CLI for daemon mode | claude | | --state-db <path> | SQLite database path for persistent state | ~/.exe-browser/state-{port}.db (daemon) or in-memory | | --context-db <path> | Alias for --state-db | | | --audit-log <path> | JSON-lines audit log path | stderr | | --compress-threshold <bytes> | Auto-compression threshold | 5120 | | --no-compress | Disable response compression | |

Tools (47 total)

Browser Control

browser_snapshot, browser_snapshot_diff, browser_navigate, browser_go_back, browser_go_forward, browser_wait, browser_wait_for, browser_press_key, browser_click, browser_hover, browser_drag, browser_type, browser_fill_form, browser_select_option, browser_screenshot, browser_get_console_logs, browser_page_state, browser_evaluate, browser_handle_dialog, browser_connection_info, browser_list_tabs, browser_switch_tab, browser_new_tab

Humanization

browser_mouse_move, browser_scroll, browser_wait_random, browser_type_human, browser_rate_limit_config, browser_rate_limit_check

Social Media Workflows

social_workflow, social_list_workflows, social_content_variation, social_session_check

Context Compression

browser_search_context, browser_context_stats

Orchestration & Scheduling

orchestrator_schedule, orchestrator_schedule_recurring, orchestrator_schedule_list, orchestrator_schedule_update, orchestrator_campaign_create, orchestrator_campaign_status, orchestrator_campaign_update, orchestrator_campaign_next_target, orchestrator_campaign_mark_engaged, orchestrator_error_record, orchestrator_error_list, orchestrator_error_resolve

Development

This package is part of the exe-browser MCP monorepo. Clone the repo for contribution instructions, publishing steps, and privacy policy.