Skip to main content

A Model Context Protocol (MCP) server that provides access to Dexcom G7 continuous glucose monitor data

Project description

Dexcom G7 MCP Server

A Model Context Protocol (MCP) server that provides access to Dexcom G7 continuous glucose monitor data. This server allows AI assistants and other MCP clients to retrieve current glucose readings and historical data from your Dexcom G7 device.

Features

  • Current Glucose Reading: Get the latest glucose value with trend information
  • Historical Data: Retrieve glucose readings for a specified time period
  • Dual Units: Values provided in both mg/dL and mmol/L
  • HTTP Transport: Native HTTP/JSON-RPC interface for easy integration
  • MCP Compatible: Full Model Context Protocol compliance

Quick Start

Using Docker

# Build the image
docker build -t dexcom-mcp .

# Run with your credentials
docker run -p 8007:8007 \
  -e DEXCOM_USERNAME="your-dexcom-username" \
  -e DEXCOM_PASSWORD="your-dexcom-password" \
  -e DEXCOM_REGION="us" \
  dexcom-mcp

Using MCP-Compose

For orchestrated deployment with other MCP servers, use mcp-compose:

# mcp-compose.yaml
version: '1'
servers:
  dexcom:
    image: dexcom-mcp:local
    runtime: docker
    build:
      context: .
      dockerfile: Dockerfile
    protocol: http
    http_port: 8007
    env:
      HTTP_PORT: "8007"
      DEXCOM_REGION: "us"
      DEXCOM_USERNAME: "your-dexcom-username"
      DEXCOM_PASSWORD: "your-dexcom-password"
    capabilities: [tools]
    networks: [mcp-net]

Then start with:

mcp-compose up dexcom

Environment Variables

Variable Description Default Required
DEXCOM_USERNAME Your Dexcom account username - Yes
DEXCOM_PASSWORD Your Dexcom account password - Yes
DEXCOM_REGION Dexcom region (us or ous) us No
HTTP_PORT HTTP server port 8007 No

Note: For users outside the US, set DEXCOM_REGION=ous (Outside US).

Available Tools

get_current_glucose

Retrieves the most recent glucose reading from your Dexcom G7.

Parameters: None

Example Response:

🩸 Current Glucose: 120 mg/dL (6.66 mmol/L)
📈 Trend: Steady
⏰ Time: 2024-01-15 14:30:00

get_glucose_history

Retrieves historical glucose readings for a specified time period.

Parameters:

  • hours (integer, optional): Number of hours of history to retrieve (default: 6)

Example Response:

📊 Last 6h glucose readings:
1. 2024-01-15 14:30:00 - 120 mg/dL (6.66 mmol/L) [Steady]
2. 2024-01-15 14:25:00 - 118 mg/dL (6.55 mmol/L) [Steady]
3. 2024-01-15 14:20:00 - 115 mg/dL (6.39 mmol/L) [Slowly Rising]
...

API Usage

Initialize Connection

curl -X POST http://localhost:8007/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "initialize",
    "params": {
      "protocolVersion": "2024-11-05",
      "capabilities": {},
      "clientInfo": {"name": "test-client", "version": "1.0.0"}
    }
  }'

Get Current Glucose

curl -X POST http://localhost:8007/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 2,
    "method": "tools/call",
    "params": {
      "name": "get_current_glucose",
      "arguments": {}
    }
  }'

Get Glucose History

curl -X POST http://localhost:8007/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 3,
    "method": "tools/call",
    "params": {
      "name": "get_glucose_history",
      "arguments": {"hours": 12}
    }
  }'

Client Integration

Claude Desktop

Add to your Claude Desktop MCP settings:

{
  "servers": [
    {
      "name": "dexcom",
      "httpEndpoint": "http://localhost:8007",
      "capabilities": ["tools"],
      "description": "Dexcom G7 glucose monitor"
    }
  ]
}

OpenWebUI

Use the auto-generated OpenAPI specification at http://localhost:8007/openapi.json (when using mcp-compose proxy).

Architecture

Transport Protocol

This server uses HTTP transport instead of the traditional STDIO transport used by many MCP servers. This provides several advantages:

  • Direct HTTP/JSON-RPC communication
  • No need for stdio redirection or process management
  • Better error handling and connection management
  • Native support for web clients and proxies

Socat Integration (Optional)

The included entrypoint.sh provides socat integration for environments that expect STDIO transport. When used with MCP-Compose's socat hosting feature, it bridges between TCP sockets and the server process:

# The entrypoint wraps the server for STDIO compatibility
socat TCP-LISTEN:12345,reuseaddr,bind=0.0.0.0 EXEC:"python server.py"

This allows the HTTP-based server to work with STDIO-expecting orchestrators while maintaining the benefits of HTTP transport.

For more information about socat hosting and orchestration, see the mcp-compose documentation.

Dependencies

  • pydexcom: For Dexcom API access
  • FastAPI: HTTP server framework
  • uvicorn: ASGI server
  • mcp: Model Context Protocol support

Requirements

  • Python 3.11+
  • Valid Dexcom account credentials
  • Active Dexcom G7 device with data sharing enabled

Security Considerations

  • Store credentials securely using environment variables
  • Consider using Docker secrets for production deployments
  • Restrict network access to trusted clients
  • Monitor access logs for unauthorized usage

Troubleshooting

Common Issues

Authentication Failed

  • Verify your Dexcom username and password are correct
  • Ensure you can log into the Dexcom mobile app
  • Check that data sharing is enabled in your Dexcom account

No Recent Data

  • Confirm your G7 sensor is active and transmitting
  • Check that your phone/receiver has recent connectivity to Dexcom servers
  • Verify the sensor hasn't expired

Connection Timeouts

  • Dexcom servers occasionally experience delays
  • Retry requests after a brief wait
  • Check your internet connectivity

Debug Mode

Enable debug logging by setting the log level:

docker run -p 8007:8007 \
  -e DEXCOM_USERNAME="your-username" \
  -e DEXCOM_PASSWORD="your-password" \
  -e PYTHONUNBUFFERED=1 \
  dexcom-mcp

Disclaimer

This software is not affiliated with or endorsed by Dexcom, Inc. Use of this software requires valid Dexcom account credentials and is subject to Dexcom's terms of service. This tool is for personal use and should not be used as a substitute for proper medical monitoring and care.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_phildougherty_dexcom_g7_mcp_server-0.1.0.tar.gz.

File metadata

  • Download URL: iflow_mcp_phildougherty_dexcom_g7_mcp_server-0.1.0.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_phildougherty_dexcom_g7_mcp_server-0.1.0.tar.gz
Algorithm Hash digest
SHA256 44ae5d3054d00cf40399d4f82130831aaa8cda2191ef42ae55f0fe74fc45cd14
MD5 7088e195427b379a7cd470fa8dfa57d3
BLAKE2b-256 31e59ab12cb9f6cb03fdaef9a05212825eae0439677a2547cf05a81afdfe1d89

See more details on using hashes here.

File details

Details for the file iflow_mcp_phildougherty_dexcom_g7_mcp_server-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: iflow_mcp_phildougherty_dexcom_g7_mcp_server-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for iflow_mcp_phildougherty_dexcom_g7_mcp_server-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9408ca1fa0360772d874265cb541252adbc7afe48995e11ceb47eff69c565d6e
MD5 08cff20b4ddc586f609607315836e4cb
BLAKE2b-256 180391af1c62d339ddee3cdcd3399c4c4a369063f0716fe46160b8ebee5dda19

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page