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

@lumifyai/mcp

v0.1.0

Published

Local stdio bridge to the hosted Lumify sports-intelligence MCP server (schedules, live scores, odds, betting splits, AI bet intelligence).

Readme

@lumifyai/mcp

Run the hosted Lumify sports-intelligence MCP server locally over the stdio transport — for MCP clients that don't (yet) support remote Streamable HTTP servers.

Status: package is built and tested in this repo but not yet published to npm. Until npm publish, use a local path (below) or npm linknpx -y @lumifyai/mcp will 404.

Lumify already runs a hosted MCP server at https://lumify.ai/mcp (Streamable HTTP, JSON mode, stateless). If your client supports remote MCP servers, point it straight at that URL — you don't need this package. Use @lumifyai/mcp when your client only speaks local stdio and you'd rather not hand-roll a proxy.

It's a thin, zero-dependency bridge: it forwards each JSON-RPC message verbatim to the hosted endpoint with your API key attached, so the tool catalog, input schemas, protocol negotiation, and billing all come straight from the live server — nothing is duplicated locally, so nothing drifts. Responses are re-serialized to a single NDJSON line (MCP stdio forbids embedded newlines), and MCP-Protocol-Version is pinned after initialize.

Requirements

Usage

# From a clone of this repo (until the package is on npm)
export LUMIFY_API_KEY=lmfy-xxxxxx.yyyyyyyy
node /path/to/lumify/clients/lumify-mcp/bin/lumify-mcp.js

# After publish
npx -y @lumifyai/mcp
# or: npx -y @lumifyai/mcp --api-key lmfy-xxxxxx.yyyyyyyy

The handshake (initialize, tools/list, ping) works without a key; tool calls require one. All diagnostics go to stderr — stdout carries only the MCP protocol.

Options

| Flag | Env | Default | Purpose | | --- | --- | --- | --- | | --api-key <key> | LUMIFY_API_KEY | — | Lumify API key (lmfy-...). | | --url <endpoint> | LUMIFY_MCP_URL | https://lumify.ai/mcp | Override the upstream endpoint. | | -h, --help | | | Show help (stderr). | | -v, --version | | | Print the version (stderr). |

Client configuration

Cursor (~/.cursor/mcp.json) — local path (pre-publish)

{
  "mcpServers": {
    "lumify": {
      "command": "node",
      "args": ["/absolute/path/to/lumify/clients/lumify-mcp/bin/lumify-mcp.js"],
      "env": { "LUMIFY_API_KEY": "lmfy-xxxxxx.yyyyyyyy" }
    }
  }
}

Cursor — after npm publish

{
  "mcpServers": {
    "lumify": {
      "command": "npx",
      "args": ["-y", "@lumifyai/mcp"],
      "env": { "LUMIFY_API_KEY": "lmfy-xxxxxx.yyyyyyyy" }
    }
  }
}

Cursor also supports remote MCP servers directly — you can instead set "url": "https://lumify.ai/mcp" with an Authorization: Bearer lmfy-... header and skip this package entirely.

Claude Desktop (claude_desktop_config.json)

Same shapes as above (command + args + env). Prefer the local node path until the package is published.

Tools

The tool set is served live by the hosted server (run tools/list to see the current catalog). Today it exposes: list_sports, list_seasons, list_events, get_event, get_live_score, get_odds, get_odds_history, get_splits, get_intelligence, list_teams, get_team, search_players, get_player, and get_player_events.

Billing

Metering happens server-side and mirrors the REST API. initialize, tools/list, and ping are free; each tools/call is metered like the matching REST call, and calls for data that isn't available yet (odds/intelligence/splits on an unpriced match) are free (_meta.credits_used: 0). Your key is sent only to https://lumify.ai/mcp over HTTPS and is never stored by this package.

Troubleshooting

  • tools/call returns "Unauthorized" — set LUMIFY_API_KEY (or --api-key).
  • "Rate limit exceeded" — you hit the per-key limit; the error includes a retry_after (seconds). The anonymous limit is lower, so always pass a key.
  • npx can't find the package — not published yet; use the local node path above, or ensure Node ≥18 after publish (node --version).

License

MIT © 2026 Lumify AI

Docs