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

sendblue-browser-mcp

v0.2.3

Published

MCP server wrapping the sendblue-browser-use daemon. Exposes navigate, screenshot, script, session lifecycle, and CDP attach as MCP tools so any MCP client (Claude Desktop, Codex, Cursor, Antigravity, Cline, Windsurf) can drive a stealth-patched Chromium.

Downloads

668

Readme

sendblue-browser-mcp

MCP server that wraps the sendblue-browser-use daemon. Exposes the full HTTP API as MCP tools so any MCP-speaking client (Claude Desktop, OpenAI Codex, Cursor, Google Antigravity, Cline, Windsurf, Claude Code) can drive a stealth-patched Chromium with one line of config.

Install

# Most clients: nothing to install — they run via npx automatically.
# Verify it works once:
npx -y [email protected] --version

Tool calls require the sendblue-browser-use daemon to be running on 127.0.0.1:8787 (or wherever BROWSER_USE_URL points). The MCP server is a thin proxy.

Configure your client

All MCP clients have converged on this shape:

{
  "mcpServers": {
    "sendblue-browser": {
      "command": "npx",
      "args": ["-y", "[email protected]"],
      "env": {
        "BROWSER_USE_URL": "http://127.0.0.1:8787",
        "BROWSER_USE_API_KEY": "<the same token you started the daemon with>"
      }
    }
  }
}

Drop that block into:

| Client | Config path | |---|---| | Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) | | Claude Code | ~/.claude.json or repo-level .claude.json | | Cursor | ~/.cursor/mcp.json (global) or .cursor/mcp.json (project) | | Google Antigravity | ~/.gemini/config/mcp_config.json | | OpenAI Codex | codex mcp add sendblue-browser --env BROWSER_USE_URL=http://127.0.0.1:8787 --env BROWSER_USE_API_KEY=<daemon-token> -- npx -y [email protected] (writes ~/.codex/config.toml) | | Cline | Settings → MCP Servers → Add | | Windsurf | Settings → Cascade → MCP → Add |

Streamable HTTP mode (optional)

If your client prefers remote MCP servers, run the wrapper as an HTTP service:

export SENDBLUE_BROWSER_MCP_TOKEN="$(openssl rand -hex 32)"
BROWSER_USE_API_KEY="<daemon token>" \
  SENDBLUE_BROWSER_MCP_TOKEN="$SENDBLUE_BROWSER_MCP_TOKEN" \
  sendblue-browser-mcp --port 8788

Then point your client at it:

{
  "mcpServers": {
    "sendblue-browser": {
      "url": "http://127.0.0.1:8788/mcp",
      "headers": {
        "Authorization": "Bearer <SENDBLUE_BROWSER_MCP_TOKEN>"
      }
    }
  }
}

HTTP mode binds 127.0.0.1 and refuses requests unless SENDBLUE_BROWSER_MCP_TOKEN is set and supplied as a bearer token. Prefer stdio mode unless your MCP client specifically needs HTTP.

Tools exposed

| Tool | What it does | |---|---| | health | Check if the daemon is reachable, including navScreenshotPolicy. | | list_sessions | List active browser sessions. | | create_session | Spawn a session. persistent=true follows the daemon default; set persistent=false for CDP attach. Responses include autoNavScreenshots. | | get_session | Inspect current page URL/title, console buffer count, and autoNavScreenshots. | | navigate | Navigate to a URL (http(s) only). Background evidence is only written when autoNavScreenshots=true. | | screenshot | Capture PNG, full-page or per-selector. Use explicitly after headed navigation when evidence is needed. | | script | Eval a JS expression in page context (wrap statements in an IIFE). | | get_cookies / set_cookies | Playwright-shape cookie I/O. | | get_console | Read recent console messages from the page. | | get_cdp_url | Get the CDP websocket URL and targetId for direct Playwright/Puppeteer attach. | | purge_session | Clear cookies/permissions and active-page storage/caches, keep session id. | | close_session | Close + delete on-disk profile. |

Env

| Var | Required | Default | Notes | |---|---|---|---| | BROWSER_USE_API_KEY | Yes | — | Same token used to start the daemon. | | BROWSER_USE_URL | No | http://127.0.0.1:8787 | Daemon base URL. | | SENDBLUE_BROWSER_MCP_TOKEN | HTTP mode only | — | Bearer token required by --port Streamable HTTP mode. |

License

MIT. See LICENSE in the parent repo.