google-health-worker-mcp
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-worker-mcpshow my heart rate data for today"
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-worker-mcp
Personal remote MCP server on Cloudflare Workers that connects Claude (iPhone / desktop / web via Custom Connector) to Google Health API v4 — read activity, sleep, heart rate, SpO₂, HRV, respiratory rate, skin temperature, weight and nutrition.
All 16
HealthProviderread methods run on Google Health v4 (GoogleHealthProvider). This edition exposes the read surface; the write/delete methods are present in the interface but not implemented.
Based on tachibanayu24/fitbit-googlehealth-mcp (MIT). Upstream docs preserved under docs/upstream-*.
Why
The legacy Fitbit Web API shuts down in September 2026. Google Health API v4 is its successor. This project keeps the upstream's Workers / Hono / MCP architecture — the only form factor usable from the Claude mobile app — and swaps the data source to v4.
Related MCP server: Garmin Connect MCP Server
Capabilities
Domain | Methods | Status |
Profile · devices |
| ✅ live |
Activity |
| ✅ live |
Exercise |
| ✅ live (mapping unverified — no exercise data on account) |
Sleep |
| ✅ live |
Heart |
| ✅ live |
Metrics |
| ✅ live |
Body · food |
| ✅ live |
The HealthProvider interface also declares write/delete methods (logFood, logWeight, …); in this edition they throw "not implemented".
Skin temperature is confirmed absolute °C + baseline; the mapper reports the nightly-relative delta. Reconcile calls omit filter (v4 filter members are type-specific and mostly 400); range narrowing is done client-side on the civil date.
Setup
One-time bootstrap.
Google Cloud (console):
Create a project → APIs & Services → enable Health API.
OAuth consent screen (User type External): add the read scopes below, add your own Gmail as a test user, then Publish the app to "In production". (Testing-mode refresh tokens expire after 7 days, which breaks an unattended Worker.)
Credentials → create an OAuth client (Web application), Authorized redirect URI
http://127.0.0.1:8787/oauth/callback. Note the client id / secret.
Read scopes (prefix https://www.googleapis.com/auth/):
googlehealth.profile.readonly
googlehealth.settings.readonly
googlehealth.activity_and_fitness.readonly
googlehealth.health_metrics_and_measurements.readonly
googlehealth.sleep.readonly
googlehealth.nutrition.readonlyDo not add
include_granted_scopesto the authorization URL — mixing legacy scopes can cause403s on reads. Useaccess_type=offline&prompt=consentto get a refresh token.
This repo:
pnpm install # you run this — deps are never auto-installed
cp wrangler.toml.example wrangler.toml
pnpm wrangler kv namespace create TOKENS # paste ids into wrangler.toml
pnpm wrangler kv namespace create CACHE
export GOOGLE_CLIENT_ID=... # the Web OAuth client from above
export GOOGLE_CLIENT_SECRET=...
pnpm run setup:google # browser consent -> prints wrangler secret/kv commands
pnpm deploy # then add the Custom Connector in claude.ai:
# https://<worker>.workers.dev/mcp/<MCP_SHARED_SECRET>MCP_SHARED_SECRET must be hex (openssl rand -hex 32) — it is embedded in the URL path, so base64's / would break routing. Secrets live in Cloudflare, tokens in KV — never in this repo.
Architecture
Claude (mobile / desktop / web)
│ Streamable HTTP /mcp/<SECRET>
▼
Cloudflare Workers
├─ guard (shared secret + Anthropic CIDR allowlist)
├─ @hono/mcp (Streamable HTTP transport)
└─ McpServer → tools/* → HealthProvider
└─ GoogleHealthProvider → health.googleapis.com/v4
KV: TOKENS (Google OAuth refresh/access) · CACHE (read cache)Two auth layers: ① Claude → Worker = shared secret in the URL path + Anthropic CIDR allowlist; ② Worker → Google = KV refresh token, auto-refreshed. The tools layer is provider-agnostic (HealthProvider); swapping Fitbit → Google was one line in src/server.ts.
Development
pnpm typecheck # tsc --noEmit
pnpm test # vitest (113 tests)
pnpm lint # biome
pnpm deploy # wrangler deployProvider field mappings are covered by fixture tests using shapes probed from the live v4 API. Deployment: connect the repo in Cloudflare Workers Builds (dashboard → Workers → Builds → connect GitHub) so push main runs install + test + wrangler deploy automatically.
Documents
Doc | What |
| Upstream README / research / journal (Fitbit-era reference) |
License
MIT — see LICENSE (upstream copyright preserved).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server to read daily activity, sleep, heart rate, and body metrics from Google Health API, allowing AI assistants like Claude to access your health data. Optionally syncs health metrics to an Obsidian vault.5MIT
- Alicense-qualityDmaintenanceAn MCP server that gives Claude access to your Garmin Connect fitness and health data, including steps, sleep, activities, heart rate, and more.1MIT
- Flicense-qualityCmaintenanceA private, read-only MCP server that lets Claude retrieve your Oura Ring health data for a daily check-in, self-hosted on Cloudflare with OAuth authentication.
- Alicense-qualityCmaintenanceA Cloudflare Workers MCP server that allows AI to read-only access Apple Health data (current status, sleep details, trends) via shortcuts without modifying or deleting data.MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Garmin data in Claude & ChatGPT via the Garmin Health API. OAuth sign-in, no password sharing.
MCP server for Withings health data — sleep, activity, heart, and body metrics.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Ring8688/google-health-worker-mcp-V1'
If you have feedback or need assistance with the MCP directory API, please join our Discord server