samsung-health-mcp
Unofficial local-first MCP server for Samsung Health personal-data CSV/ZIP exports.
File Explorer
- ci.yml
- mcp-scorecard.yml
- dependabot.yml
- banner.png
- quickstart.md
- samples-honesty.md
- claude-desktop.json
- hermes.md
- com.samsung.health.exercise.202605.csv
- com.samsung.health.exercise.location.202605.csv
- com.samsung.health.exercise.route.202605.csv
- com.samsung.health.heart_rate.202605.csv
- com.samsung.health.hrv.202605.csv
- com.samsung.health.oxygen_saturation.202605.csv
- com.samsung.health.respiratory_rate.202605.csv
- com.samsung.health.resting_heart_rate.202605.csv
- com.samsung.health.sleep.202605.csv
- com.samsung.health.sleep_stage.202605.csv
- com.samsung.health.step_count.202605.csv
- com.samsung.health.weight.202605.csv
- com.samsung.shealth.step_daily_trend.202605.csv
- com.samsung.shealth.tracker.pedometer_step_count.202605.csv
- agent-readiness-test.mjs
- cli-ux-test.mjs
- demo-contract-test.mjs
- export-parser-test.mjs
- freshness-test.mjs
- hermes-agent-manifest-test.mjs
- incremental-cache-test.mjs
- metadata-check.mjs
- privacy-leak-test.mjs
- smoke-http.mjs
- smoke-tools.mjs
- test-skill-surface.mjs
- watch-folder-test.mjs
- SKILL.md
- commands.ts
- setup.ts
- tool-calls.ts
- samsung-health-prompts.ts
- samsung-health-resources.ts
- common.ts
- agent-manifest.ts
- audit.ts
- capabilities.ts
- config.ts
- connection-status.ts
- context.ts
- demo.ts
- format.ts
- freshness.ts
- import-export.ts
- incremental-cache.ts
- inventory.ts
- local-config.ts
- privacy.ts
- profile-store.ts
- redaction.ts
- samsung-health-export.ts
- summary.ts
- time.ts
- watch.ts
- samsung-health-tools.ts
- constants.ts
- index.ts
- types.ts
- .gitignore
- .npmignore
- AGENTS.md
- CHANGELOG.md
- CONTRIBUTING.md
- glama.json
- LICENSE
- llms.txt
- package-lock.json
- package.json
- README.md
- SECURITY.md
- server.json
- smithery.yaml
- tsconfig.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm test
View Details ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
