google-health-mcp-server
Retrieves health data from Apple Watch (steps, distance, heart rate, sleep, etc.) unified through Google Health.
Retrieves health data from Fitbit devices (steps, distance, heart rate, sleep, etc.) unified through Google Health.
Provides tools to read daily activity, sleep, heart rate, and body metrics from the Google Health API v4.
Syncs health data into an Obsidian vault as daily markdown notes and a rolling dashboard.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@google-health-mcp-servershow me my daily activity summary for the last 3 days"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π©Ί google-health-mcp-server
Hand your whole-body health data to your AI β steps, distance, heart rate, and more from Apple Watch, Fitbit, or Pixel Watch, unified through Google Health.
An MCP server for the Google Health API v4 β read your daily activity, sleep, heart rate, and body metrics from any source connected to Google Health (Apple Watch import, Fitbit Air, Pixel Watch, ...) in Claude or any MCP client, and optionally sync them into an Obsidian vault.
Self-hosted and local-first: it uses your own Google Cloud OAuth app, tokens are stored
on your machine at mode 0600, and no health data leaves your control.
Beta notice. The Google Health API v4 is new (public beta; legacy Fitbit Web API turns down September 2026). Field shapes may still shift. This server normalizes daily values best-effort and always returns the raw rollup points alongside, so nothing is lost if a field mapping in
src/constants.tsneeds a tweak against live data.
Tools
Tool | What it does |
| Per-day table of steps, distance, active calories, active minutes, resting HR, sleep over a date range (or trailing |
| Raw, un-rolled-up points for one dataType β intraday HR, sleep stages, or any type not in the summary. |
| Devices paired to the account β confirm a new device (e.g. Fitbit Air) has connected. |
| Health-check: token works? which scopes granted? which metrics actually return data over the last 7 days? Run this first after setup. |
| Daily markdown notes under |
One-time setup
1. Google Cloud project + API
Create or pick a project at https://console.cloud.google.com/.
Enable the Google Health API: https://console.cloud.google.com/apis/library/health.googleapis.com
2. OAuth consent screen
Go to APIs & Services β OAuth consent screen. User type External.
Fill in the app name and your email.
Under Audience β Test users, add your own Google account.
On the Data access page, add these scopes (search "Google Health"):
β¦/auth/googlehealth.profile.readonlyβ¦/auth/googlehealth.settings.readonlyβ¦/auth/googlehealth.activity_and_fitness.readonlyβ¦/auth/googlehealth.health_metrics_and_measurements.readonlyβ¦/auth/googlehealth.sleep.readonlyβ¦/auth/googlehealth.nutrition.readonly
β οΈ 7-day token caveat. While the consent screen is in Testing status, Google issues refresh tokens that expire after 7 days β the daily sync will start failing weekly and you'll need to re-run
npm run oauth. To get long-lived tokens, publish the app to Production (APIs & Services β OAuth consent screen β Publish app). For your own single-user use you can click through the "unverified app" warning; full Google verification is only needed to onboard other users.
3. OAuth credentials
APIs & Services β Credentials β Create credentials β OAuth client ID.
Application type: Web application.
Under Authorized redirect URIs, add exactly:
http://localhost:47813/callback(Must match
GOOGLE_HEALTH_OAUTH_PORT. Change both together if 47813 is taken.)Copy the Client ID and Client secret.
4. Configure + authorize
npm install
cp .env.example .env # then paste your client ID + secret into .env
npm run oauth # opens a browser; approve access. Tokens saved to
# ~/.config/google-health-mcp/tokens.json (mode 0600)
npm run buildVerify it works:
node dist/index.js # should print "Google Health MCP server running on stdio"β¦or call connection_status once registered in your MCP client.
Register in Claude
Add to ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude:
{
"mcpServers": {
"google-health": {
"command": "node",
"args": ["/Users/<you>/projects/google-health-mcp-server/dist/index.js"],
"env": {
"GOOGLE_HEALTH_TOKENS_PATH": "/Users/<you>/.config/google-health-mcp/tokens.json",
"OBSIDIAN_VAULT_PATH": "/Users/<you>/Documents/Obsidian Vault"
}
}
}
}The runtime reads the client ID/secret back from the tokens file, so they don't need to be
in the MCP env block β only the token path and (optionally) the vault path.
Daily Obsidian sync (optional)
Set OBSIDIAN_VAULT_PATH, then either call sync_health_to_obsidian from Claude or run the
CLI / a launchd cron:
npm run sync # incremental sync since last runA launchd template is in launchd/. Copy it to ~/Library/LaunchAgents/, replace
__USERNAME__, and launchctl bootstrap gui/$(id -u) <plist>. (Remember the 7-day token
caveat above β the cron fails weekly until the OAuth app is in Production.)
Develop
npm run build # tsc --noCheck β dist/
npm run typecheck # strict type check (excludes tests)
npm test # vitest β pure logic (civil-date math, value extraction)
npm run dev # build + run the server on stdioSee CLAUDE.md for architecture notes and known pitfalls.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/madfreakz/google-health-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server