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

@iwer/extension-bridge

v2.3.0

Published

Local MCP daemon bridging coding agents to the Immersive Web Emulator (IWER device.remote) over a localhost WebSocket. Drive any WebXR page from Claude Code, Codex, Cursor and friends — no dev server required.

Readme

@iwer/extension-bridge

Local MCP daemon that lets a coding agent (Claude Code, Codex, Cursor, Copilot, Windsurf, Cline, …) drive any WebXR page through the Immersive Web Emulator browser extension — no dev server required.

This package provides the dev-server-free extension MCP bridge (see packages/extension/extension-mcp-bridge-plan.md). It complements IWSDK's project-scoped iwsdk dev MCP bridge.

How it works

Coding agent ──stdio (MCP)──► @iwer/extension-bridge daemon ──ws://127.0.0.1──► IWE extension ──► IWER device.remote
  • The agent spawns iwer-bridge serve over stdio (the universal MCP transport).
  • The daemon also hosts a loopback WebSocket server (an MV3 extension can only be a WS client, never a server).
  • The extension dials in and relays each tool call to the in-page IWER device.remote.

Security: bound to 127.0.0.1 only, Origin/Host validated, and control is gated browser-side by a per-tab Allow prompt before any agent request reaches a page.

Use

Published package:

claude mcp add --scope user iwer -- npx -y @iwer/extension-bridge serve

Local unpublished checkout:

pnpm --filter @iwer/extension-bridge run build

Then use the committed project config at the repository root, .mcp.json, or manually point your agent at:

{
  "mcpServers": {
    "iwer": {
      "command": "node",
      "args": ["packages/extension-bridge/bin/iwer-bridge.mjs", "serve"]
    }
  }
}

Restart your agent, open a WebXR page, enable Immersive Web Emulator from the toolbar, and click Allow when the agent first acts on the page.

Tools

20 tools mapping 1:1 onto IWER device.remote methods — session (xr_accept_session, xr_get_session_status, …), transform (xr_set_transform, xr_look_at, xr_animate_to), input (xr_select, xr_set_input_mode, gamepad), state, SEM world queries (xr_get_world_state, xr_get_objects), and browser_screenshot (returned as a downscaled image). See src/contract.ts.

Commands

  • iwer-bridge serve — run the daemon (your agent spawns this).
  • iwer-bridge help — show CLI help.

License

MIT.