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

@luxxon/mcp

v0.3.1

Published

MCP server exposing Luxxon as agent-callable tools — open live sessions at any lat/lng, fetch frames, and read settlement.

Readme

@luxxon/mcp

MCP server that exposes Luxxon as agent-callable tools. Agents open live video sessions at any lat/lng, fetch JPEG frames straight into a vision model, and read on-chain settlement — without ever leaving the chat.

# Run on demand (no global install needed)
npx -y --package=@luxxon/mcp luxxon-mcp

# Or install globally and run by bin name
npm install -g @luxxon/mcp
luxxon-mcp

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (or %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "luxxon": {
      "command": "npx",
      "args": ["-y", "--package=@luxxon/mcp", "luxxon-mcp"],
      "env": {
        "LUXXON_API_KEY": "lxxn_test_..."
      }
    }
  }
}

Restart Claude. Ten tools appear under Luxxon:

| Tool | What it does | |---|---| | request_live_view | Headline. Open + dispatch + wait-for-LIVE in one call. Returns sessionId + whepUrl. | | get_session | Read state + meter fields of a session. | | get_frame | Latest decoded frame as a JPEG (LIVE only). Returned as an image content block — Claude sees it directly. | | get_stream_url | WHEP playback URL for native WebRTC. | | end_session | Close a LIVE session. Triggers on-chain settlement. | | cancel_session | Cancel a pre-LIVE session. | | get_pricing_quote | Estimate cost before opening — returns rate + total in µUSDC. | | get_coverage | Anonymized live operator coverage map. Pre-flight check. | | get_wallet | Workspace pool balance + last on-chain sync. | | get_settlement | On-chain settlement state + tx hash after end_session. |

The vision-model integration "just works": when Claude calls get_frame, the JPEG comes back as an image content block — Claude sees it directly, no base64 plumbing on your side.

Headline flow (request_live_view)

One tool call from prompt to LIVE session:

You: Look at lat 4.71, lng -74.05 for 30 seconds and tell me what's happening.

Claude calls request_live_view({ lat: 4.71, lng: -74.05, maxDurationSeconds: 30 })
  → Luxxon opens the session, dispatches an operator, waits for LIVE
  → returns { sessionId, whepUrl, hint: "call get_frame next" }

Claude calls get_frame({ sessionId })
  → JPEG returned inline; Claude sees the scene

Claude calls end_session({ sessionId })
  → relayer settles on-chain; tx hash available via get_settlement

Cursor / other MCP clients

Same shape — wherever your MCP client expects a server stanza:

{
  "command": "npx",
  "args": ["-y", "--package=@luxxon/mcp", "luxxon-mcp"],
  "env": { "LUXXON_API_KEY": "lxxn_test_..." }
}

Local dev

git clone https://github.com/luxxon-dev/luxxon-sdk
cd luxxon-sdk
pnpm install
pnpm --filter @luxxon/mcp build
# Point your MCP client at the local build:
#   "command": "node",
#   "args": ["/abs/path/to/luxxon-sdk/packages/mcp/dist/server.js"]

Pass LUXXON_API_URL=http://localhost:3010/api/v1 to hit a local lx-api dev server instead of production.

Roadmap

Tracked at docs.luxxon.dev. Near-term additions when their API counterparts ship:

  • get_observation — single-frame SKU (when the per-frame pricing path lands).
  • Bounty tools (create_bounty, get_bounty_status) — pay-on- fulfillment for unsupported locations.

Versioning

v0.x — the tool surface can change with minor bumps. The underlying REST API is what's stable; this MCP is one of many possible bindings (see @luxxon/sdk for the typed TS client).