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

aion-bridge-mcp

v1.0.7

Published

Connect Claude Code to your personal health data via the Aion local FHIR bridge

Readme

Aion Bridge MCP

Connect Claude Code to your personal health data via the Aion local FHIR bridge. Everything stays on your local network — no cloud, no servers, no data leaving your home.

How it works

Your phone (Aion app)
    ↕  WebSocket on local WiFi (port 8420)
Your PC (this MCP server)
    ↕  stdio
Claude Code

Claude gets tools to query your FHIR health records (vitals, labs, conditions, medications, and more) and can reason about them directly.


Quickstart

Option A — npx (recommended, no install needed)

# One-time setup: finds your phone, writes .mcp.json
npx aion-bridge-mcp setup

# Then restart Claude Code — it will pick up .mcp.json automatically

Option B — Download binary (no Node.js required)

Download the latest binary for your OS from Releases:

| Platform | Binary | |----------------|---------------------------------| | macOS (Apple) | aion-bridge-mcp-macos-arm64 | | macOS (Intel) | aion-bridge-mcp-macos-x64 | | Linux (x64) | aion-bridge-mcp-linux-x64 | | Linux (ARM64) | aion-bridge-mcp-linux-arm64 | | Windows | aion-bridge-mcp-windows.exe |

# macOS / Linux — make executable
chmod +x aion-bridge-mcp-macos-arm64

# Run setup wizard
./aion-bridge-mcp-macos-arm64 setup

Option C — Docker

docker run -i --rm \
  -e AION_BRIDGE_URL=wss://192.168.1.100:8420 \
  -e AION_PAIRING_CODE=123456 \
  ghcr.io/aion-open/bridge-mcp:latest

.mcp.json for Docker:

{
  "mcpServers": {
    "aion-health": {
      "command": "docker",
      "args": ["run", "-i", "--rm",
               "-e", "AION_BRIDGE_URL",
               "-e", "AION_PAIRING_CODE",
               "ghcr.io/aion-open/bridge-mcp:latest"],
      "env": {
        "AION_BRIDGE_URL": "wss://192.168.1.100:8420",
        "AION_PAIRING_CODE": "123456"
      }
    }
  }
}

Prerequisites

  1. Aion app installed on your iPhone (Android coming soon)
  2. Phone and PC on the same WiFi network
  3. Bridge running: Aion app → Settings → Bridge → Start Bridge
  4. Note the 6-digit pairing code shown in the app

.mcp.json reference

After running setup, Claude Code will use this config automatically.
To configure manually:

{
  "mcpServers": {
    "aion-health": {
      "command": "npx",
      "args": ["-y", "aion-bridge-mcp"],
      "env": {
        "AION_BRIDGE_URL": "wss://192.168.1.100:8420",
        "AION_PAIRING_CODE": "123456"
      }
    }
  }
}

AION_BRIDGE_URL is optional — if omitted, the server will auto-discover your phone via Bonjour/mDNS and TCP scan.


Available tools

| Tool | Description | |---------------------|--------------------------------------------------| | get_health_summary| Counts of all FHIR resources by type | | query_health_data | Query specific types (Observation, Condition…) | | analyze_health | Natural language health question (needs Ollama) | | export_health_data| Full FHIR Bundle export |


CLI subcommands

npx aion-bridge-mcp setup      # Interactive setup wizard
npx aion-bridge-mcp discover   # Scan for phone, print URL

Privacy

  • All data served over local WiFi only — never leaves your network
  • Pairing code prevents unauthorized access
  • TLS with self-signed cert encrypts the connection
  • No telemetry, no analytics, no cloud

Building from source

git clone https://github.com/aion-open/bridge-mcp
cd bridge-mcp
npm install
npm run build
node dist/index.js setup

Build standalone binaries (requires Node 20):

npm install     # installs esbuild + pkg
npm run pkg:all # builds all 5 platform binaries → bin/