Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for Dexcom CGM glucose data, enabling AI agents to access and analyze continuous glucose monitor readings for health intelligence applications.

README.md

mcp-server-dexcom-health

MCP server for Dexcom CGM glucose data. Enables AI agents to access and analyze continuous glucose monitor data for health intelligence applications.

Features

  • Real-time glucose monitoring - Current readings with trend analysis
  • Historical data access - Up to 24 hours of glucose history
  • Time window queries - Query specific time ranges (e.g., "4-3 hours ago")
  • Clinical analytics - Time-in-range, GMI, CV%, AGP reports
  • Episode detection - Automatic hypo/hyper event identification with detailed context
  • Time-block analysis - Identify patterns by time of day
  • Persistence layer support - Pass external data for long-term analysis

Tools

| Tool | Description | |------|-------------| | get_current_glucose | Current glucose reading with trend | | get_glucose_readings | Historical readings with optional time windows | | get_statistics | TIR, CV%, GMI, and other metrics | | get_status_summary | Complete "how am I doing?" summary | | detect_episodes | Find hypo/hyper episodes | | get_episode_details | Deep analysis of each episode | | analyze_time_blocks | Patterns by time of day | | check_alerts | Real-time threshold alerts | | export_data | Export for external storage | | get_agp_report | Clinical AGP report |

Installation

# Using uvx (recommended)
uvx mcp-server-dexcom-health

# Using pip
pip install mcp-server-dexcom-health

Configuration

Set environment variables:

| Variable | Required | Description | |----------|----------|-------------| | DEXCOM_USERNAME | Yes | Dexcom username, email, or phone (+1234567890) | | DEXCOM_PASSWORD | Yes | Dexcom password | | DEXCOM_REGION | No | us (default), ous (outside US), or jp (Japan) |

Claude Desktop

Add to your claude_desktop_config.json: ``json { "mcpServers": { "dexcom": { "command": "uvx", "args": ["mcp-server-dexcom-health"], "env": { "DEXCOM_USERNAME": "your_username", "DEXCOM_PASSWORD": "your_password", "DEXCOM_REGION": "us" } } } } ``

Usage Examples

Basic usage with Claude

"What's my current glucose?"

"How was my overnight control?"

"Did I have any lows today?"

"Give me my statistics for the last 12 hours"

"What about the hour before that?" (follow-up queries work!)

Time Window Queries

Query specific time ranges using start_minutes and end_minutes:

# Last 3 hours (standard)
get_glucose_readings(minutes=180)

# Specific window: 4 hours ago to 3 hours ago
get_glucose_readings(start_minutes=240, end_minutes=180)

# Stats for 6-5 hours ago
get_statistics(start_minutes=360, end_minutes=300)

# Episodes between 8-4 hours ago
detect_episodes(start_minutes=480, end_minutes=240)

Supported tools: get_glucose_readings, get_statistics, detect_episodes, export_data

Persistence Layer Integration

Tools that analyze data accept an optional data parameter for external data sources: ```python

Pass your own historical data

result = get_statistics( data=[ {"glucose_mg_dl": 120, "timestamp": "2024-01-15T08:00:00Z"}, {"glucose_mg_dl": 135, "timestamp": "2024-01-15T08:05:00Z"},

... more readings

] ) ```

This enables building long-term analytics by storing data externally and passing it back for analysis.

Requirements

  • Python 3.10+
  • Active Dexcom Share session (requires Dexcom mobile app with Share enabled)
  • At least one follower configured in Dexcom Share

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Observability servers.