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

Enables reading real-time continuous glucose monitor data from Dexcom sensors via the Share API, allowing Claude to access glucose levels, trends, and statistics.

README.md

Dexcom CGM MCP Server

An MCP (Model Context Protocol) server that reads real-time continuous glucose monitor (CGM) data from Dexcom sensors via the Dexcom Share API. Integrates with Claude Desktop, allowing Claude to read your glucose levels, trends, and statistics directly.

Supports Dexcom One, G6, G7 — both EU and US regions.

---

Requirements

  • Python 3.10+
  • A Dexcom account with Share enabled in the mobile app
  • An active CGM sensor

Installation

Option A — run directly from GitHub with uvx (no install needed)

uvx --from git+https://github.com/sobek34/dexcom-mcp.git dexcom-mcp

Option B — install with pip

pip install git+https://github.com/sobek34/dexcom-mcp.git
dexcom-mcp

Option C — clone and run locally

git clone https://github.com/sobek34/dexcom-mcp.git
cd dexcom-mcp
pip install -r requirements.txt
python server.py

---

Configuration

Set these environment variables before running:

| Variable | Description | Default | |--------------------|------------------------------------------|------------| | DEXCOM_USERNAME | Dexcom account email / login | required | | DEXCOM_PASSWORD | Dexcom account password | required | | DEXCOM_REGION | EU (Europe) or US | EU |

Note: Dexcom One uses the EU server (shareous1.dexcom.com). Dexcom G6/G7 in the US uses the US server (share2.dexcom.com).

---

Claude Desktop Integration

Add to %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

With uvx (recommended — always uses latest version)

{
  "mcpServers": {
    "dexcom-cgm": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/sobek34/dexcom-mcp.git", "dexcom-mcp"],
      "env": {
        "DEXCOM_USERNAME": "your@email.com",
        "DEXCOM_PASSWORD": "your_password",
        "DEXCOM_REGION": "EU"
      }
    }
  }
}

With a local clone

{
  "mcpServers": {
    "dexcom-cgm": {
      "command": "python",
      "args": ["/path/to/dexcom-mcp/server.py"],
      "env": {
        "DEXCOM_USERNAME": "your@email.com",
        "DEXCOM_PASSWORD": "your_password",
        "DEXCOM_REGION": "EU"
      }
    }
  }
}

---

Available MCP Tools

get_current_glucose

Returns the latest glucose reading, trend arrow, and status.

Parameters:

  • unit"mmol/L" (default) or "mg/dL"

Example output: `` Glucose: 5.8 mmol/L → Trend: stable Status: IN RANGE Reading time: 14:35 UTC ``

---

get_glucose_history

Returns readings for the last X hours (up to 24h), one every 5 minutes.

Parameters:

  • hours — 1–24 (default: 3)
  • unit"mmol/L" or "mg/dL"

---

get_glucose_stats

Calculates statistics over a time window.

Parameters:

  • hours — 1–24 (default: 24)
  • low_threshold — lower TIR boundary in mmol/L (default: 3.9)
  • high_threshold — upper TIR boundary in mmol/L (default: 10.0)

Returns: mean, standard deviation, CV, TIR / TBR / TAR, estimated HbA1c (ADAG formula)

---

check_alerts

Lists hypoglycemia and hyperglycemia events within a time window.

Parameters:

  • hours — 1–24 (default: 24)
  • low_alert — hypo threshold in mmol/L (default: 3.9)
  • high_alert — hyper threshold in mmol/L (default: 10.0)

---

How to Enable Dexcom Share

  1. Open the Dexcom app (One / G6 / G7) on your phone
  2. Go to Settings → Share and enable sharing
  3. You do not need to add a follower — just enabling Share is enough

---

Security

  • Never hardcode credentials — always use environment variables
  • This uses an unofficial, undocumented API — it may break after Dexcom app updates

Disclaimer

This project is not affiliated with, endorsed by, or supported by Dexcom, Inc. Use at your own risk. Do not make medical decisions based solely on data returned by this tool.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

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