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

sensorbio-mcp-server

v1.0.9

Published

MCP server for the SensorBio wearable platform API. Access biometrics, sleep, activity, scores, calories, and device data via the Model Context Protocol.

Readme

SensorBio MCP Server

A Model Context Protocol (MCP) server for the SensorBio wearable platform API (api.getsensr.io). Gives AI assistants access to real-time biometric, sleep, activity, and health score data from Sensr wearable devices.

Tools

| Tool | Description | |------|-------------| | list_users | List all users in the organization | | get_user_ids | Get all user IDs (lightweight) | | get_biometrics | Paginated biometric readings (HR, HRV, SpO2, respiratory rate) | | get_biometrics_timeseries | Continuous biometric timeseries for a metric (max 6h window) | | get_activity_timeseries | Normalized activity intensity timeseries (max 6h window) | | get_sleep | Sleep data: stages, durations, biometrics, score, disturbances, debt | | get_sleep_trend | Aggregated sleep data (week/month/year) | | get_activities | Workout data: exercises, reps, calories, duration, scores | | get_calories | Calorie breakdown (resting, workout, active) with timeseries | | get_scores | Daily health scores: sleep, recovery, activity | | get_insights | AI-generated daily health insights | | get_devices | Device info: type, battery, last sync | | get_health_summary | All-in-one daily snapshot (scores + sleep + calories + device) | | request_raw_download | Async raw data export (PPG, accel, gyro) as CSV/Parquet | | get_job_status | Check raw data download job status |

Setup

Prerequisites

Install

npm install
npm run build

Configure

Set the SENSR_API_KEY environment variable:

export SENSR_API_KEY="your-org-api-key-here"

Run

npm start

The server communicates over stdio using the MCP protocol.

Use with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "sensr-bio": {
      "command": "node",
      "args": ["/path/to/sensr-mcp-server/dist/index.js"],
      "env": {
        "SENSR_API_KEY": "your-org-api-key-here"
      }
    }
  }
}

Use with Claude Code

claude mcp add sensr-bio -- node /path/to/sensr-mcp-server/dist/index.js

API Coverage

This server wraps the Sensr Developers API v1.3.1, covering:

  • Biometrics: Heart rate, HRV, SpO2, respiratory rate, IBI
  • Sleep: Stages, scores, disturbances, sleep debt/accounting
  • Activities: Workout detection, rep counting, exercise classification
  • Calories: Resting, active, workout breakdown
  • Scores: Sleep, recovery, activity (daily composite)
  • Devices: Battery, sync status, device type
  • Organization: User management, user listing
  • Raw Data: Async PPG/accel/gyro export

Authentication

Uses Organization API Key authentication (Authorization: APIKey <key>). Generate one from platform.getsensr.io > Developers. All data endpoints require a user_id parameter to specify which user's data to access.

Note: The Sensr auth server does not support authorization_code grant for external OAuth2 apps. Org API Key is the only supported auth method for third-party integrations.

License

MIT