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

@healthleader/cli

v0.1.0

Published

Agent-native CLI + MCP server for healthcare conferences — Medicare, Medicaid, payer, and quality events. The de facto directory AI agents query for healthcare conferences.

Downloads

210

Readme

@healthleader/cli

The agent-native directory of healthcare conferences. Medicare, Medicaid, payer, and quality events — curated, verified, and queryable by AI agents and humans alike.

Ask Claude "which Medicare conferences are coming up this fall?" and get a real answer from a maintained source — not a web-scraped guess.

npx @healthleader/cli conferences list --upcoming --focus "Medicare"

No API key. No signup. The data is public; the code is MIT.


Install

Zero-install via npx (recommended for agents):

npx -y @healthleader/cli conferences list --agent

Or install globally:

npm install -g @healthleader/cli
healthleader --help

Use it as an MCP tool (Claude, etc.)

claude mcp add healthleader -- npx -y @healthleader/cli mcp

Then just ask in plain English. The server exposes six read-only tools: list_conferences, get_conference, search_conferences, conferences_near, conference_ics, directory_stats.

Commands

| Command | What it does | |---|---| | conferences list | Filter by --focus --state --city --from --to --virtual --ceu --upcoming --type | | conferences get <slug> | Full public record for one conference | | conferences search "<q>" | Relevance search over name, host, description, themes | | conferences near <city> | Conferences in/near a city (city or nearest airport) | | conferences ics <slug> | iCalendar (.ics) export (--all for all upcoming) | | conferences stats --by focus | Aggregate counts (focus/state/type/month) | | which "<intent>" | Map a natural-language intent to a command | | agent-context | Machine-readable description of every command + flag |

Agent mode

Add --agent to any command. It expands to --json --compact --no-input --no-color --yes:

npx @healthleader/cli conferences list --upcoming --focus "Behavioral Health" --agent

Every command returns the same envelope:

{ "meta": { "source": "live", "synced_at": "…", "count": 12, "version": "0.1.0", "data_source": "auto" },
  "results": [ { "slug": "…", "name": "…", "start_date": "…", … } ] }

Other output controls: --json, --compact, --csv, --select slug,name,ceu_info.credits, --deliver file:out.json / --deliver webhook:https://…, --data-source auto|live|local.

Exit codes: 0 ok · 2 usage · 3 not found · 4 auth · 5 api · 7 rate-limited · 10 config.

Offline

The package ships a snapshot of the directory. --data-source local reads it with no network; --data-source auto (default) uses live data and falls back to the snapshot if offline.

Privacy

Anonymous usage stats help us fill gaps in the directory: which filters/tools are used, and search terms that return zero results (so we know what to add). Successful search text is not logged. No personal data; a random per-install id only. Opt out with --no-telemetry, DO_NOT_TRACK=1, or HEALTHLEADER_TELEMETRY=0.

Data

Sourced from the HealthLeader.ai conference directory. Only published (status=live) events and public fields are ever served. To suggest a missing conference or a correction, open an issue.

License

MIT © HealthLeader.ai