Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.PhilipAD/health-export-mcp

NPM · HEALTH-EXPORT-MCP · SCANNED AUG 3

Query 190 Apple Health metrics from any MCP agent — zero-dependency, read-only, local-first.

Available components

−11 this week 66 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security100
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • No production dependencies, so there is no dependency health to assess. View diagnostics → Pass
Provenance & Transparency45
Schema Quality & AI Usability70
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 432 tokens (~61/item across 7 items; 7 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage82
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 46% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · health-export-mcp

# add to Claude Code
claude mcp add philipad-health-export-mcp -- npx -y health-export-mcp
# add to Codex CLI
codex mcp add philipad-health-export-mcp -- npx -y health-export-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "philipad-health-export-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "health-export-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add philipad-health-export-mcp --command npx --arg -y --arg health-export-mcp
# ~/.hermes/config.yaml
mcp_servers:
  philipad-health-export-mcp:
    command: "npx"
    args: ["-y", "health-export-mcp"]
// mcp.json
{
  "mcpServers": {
    "philipad-health-export-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "health-export-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +15
    • Malware scan: unverified → pass security
  • 31 Jul 26 −8
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 +30
    • Tool coverage: unverified → 100 functional
    • First check of Schema quality: good functional
    • First check of Schema quality: fail functional
    • First check of Tool coverage: 46 functional
    • First check of Schema quality: pass functional
  • 26 Jul 26 47

    First indexed and scored.

    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 0 packages

0 packages in the resolved dependency tree.

MCP tools — 7 exposed · ~396 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
compare_periods ~56

Compare a metric between two arbitrary date periods (A vs B) — returns each aggregate plus the change and percent change.

NameTypeReqDescription
metricstringyes
periodAobjectyes
periodBobjectyes

No output schema declared.

No examples provided.

get_health_metrics ~98

Get daily values for a metric (or all metrics) over an optional date range, with an aggregate (avg/sum/min/max/latest). The core data-retrieval tool.

NameTypeReqDescription
aggregationstring
endstringYYYY-MM-DD
metricstringMetric name, e.g. step_count, heart_rate, sleep_analysis. Omit for all.
startstringYYYY-MM-DD

No output schema declared.

No examples provided.

get_mcp_status ~41

Health check: data source, how many metrics/workouts are available, and the most recent data date. Call this first to confirm the bridge is connected.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

get_structured_export ~59

Return clean structured JSON for the chosen metrics/date range — ideal to drop straight into an agent's context window.

NameTypeReqDescription
endstringYYYY-MM-DD
metricsarray
startstringYYYY-MM-DD

No output schema declared.

No examples provided.

get_trends ~59

Compare the most recent N-day window against the prior N days for a metric — returns change, percent change and direction (up/down/flat).

NameTypeReqDescription
metricstringyes
windowintegerdays per window (default 7)

No output schema declared.

No examples provided.

list_metrics ~34

List every available Apple Health metric with its unit, day count, and date range. Use this to discover metric names before querying.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

query_health_data ~49

Natural-language convenience: pass a question (e.g. "average HRV last month") and get routed structured results. Prefer the specific tools above when you can.

NameTypeReqDescription
questionstringyes

No output schema declared.

No examples provided.