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

wellness-air

v0.5.1

Published

Local-first air quality MCP for AI agents — AirGradient (open hardware), AirThings, PurpleAir, IQAir AirVisual, Awair. Correlate AQI with sleep, recovery, and wellness.

Readme

One-command install — pick your runtime:

Or wire it standalone into Claude Desktop / Cursor / ChatGPT Desktop — see the install section below.


Overview

Wellness Air is a local MCP server that exposes air-quality readings to any MCP-aware AI agent. v0.1 ships with first-class AirGradient support (open hardware + free public API — no auth needed for any of the 12,000+ public sensors worldwide). AirThings, PurpleAir, IQAir AirVisual, and Awair are scaffolded for v0.2.

If wellness-air helps your agent, please star the repo. Stars make the project easier for other AI builders to discover and help Delx keep shipping local-first wellness infrastructure.

Try It In 60 Seconds

# Pick a public sensor near you at https://www.airgradient.com/map/
# Copy the locationId from the URL (e.g. 654321)

WELLNESS_AIR_DEFAULT_LOCATION=654321 npx -y wellness-air doctor
WELLNESS_AIR_DEFAULT_LOCATION=654321 npx -y wellness-air current

That's it — no token, no signup, no telemetry.

Install in Claude Desktop / Cursor / ChatGPT Desktop / Codex

{
  "mcpServers": {
    "wellness-air": {
      "command": "npx",
      "args": ["-y", "wellness-air"],
      "env": {
        "WELLNESS_AIR_DEFAULT_PROVIDER": "airgradient",
        "WELLNESS_AIR_DEFAULT_LOCATION": "654321"
      }
    }
  }
}

Reload your client. The agent now has 10 air-quality tools.

Tools (10 total)

| Tool | Purpose | |---|---| | air_agent_manifest | Runtime contract: tool list, supported clients, env vars, recommended first calls | | air_capabilities | Supported providers, configured providers, available metrics, privacy modes | | air_connection_status | Health check + warnings the agent should surface | | air_privacy_audit | What is logged locally vs sent to providers | | air_data_inventory | Metric catalog + AQI band thresholds | | air_current_reading | Latest sensor reading (PM2.5, CO₂, AQI, temp, humidity) | | air_aqi_check | Fast 'is the air OK?' answer with band + recommendation | | air_daily_summary | Synthesized daily snapshot | | air_compare_locations | Compare AQI across 2-10 locations | | air_search_public_sensors | Discovery helper for AirGradient public map |

Why local-first?

  • Public sensors require zero auth. AirGradient runs an open public API; just pass a locationId.
  • Owned-sensor tokens stay on your machine. Set AIRGRADIENT_API_TOKEN only if you own a sensor.
  • No telemetry. wellness-air never phones home. The only outbound calls go to the providers you configure.
  • Read-only. No tool in v0.1 mutates anything upstream.

Cross-connector wedge

Where this gets interesting: pair it with the rest of the Delx Wellness stack.

WHOOP recovery 47   +   wellness-air AQI 132 (unhealthy_sensitive)
       ↓                          ↓
   Coach: "Recovery's low AND the bedroom AQI was unhealthy last night.
           Skip outdoor cardio today — try mobility + low-intensity strength indoors with HEPA running."

Most agents miss the room-quality variable entirely. wellness-air closes that gap.

Privacy

Run wellness-air doctor to inspect the local privacy posture. Highlights:

  • All readings cached under ~/.wellness-air (configurable).
  • Provider tokens never returned to the agent.
  • No biometric data — environmental only.
  • Tool outputs explicitly tagged with their data source for downstream auditability.

Roadmap

  • v0.2 — full AirThings + PurpleAir + IQAir + Awair adapters; rolling daily/weekly aggregations.
  • v0.3 — historical fetch + cross-correlation helper (e.g. air_correlate_with_sleep).
  • v0.4 — webhook trigger for AQI thresholds (agent gets notified when AQI crosses a band).

License

MIT — see LICENSE.

wellness-air is an unofficial connector. AirGradient, AirThings, PurpleAir, IQAir, and Awair are trademarks of their respective owners. None of those companies are affiliated with or endorse this project.