MCP server for Cronometer nutrition data using the mobile REST API
Project description
cronometer-api-mcp
An MCP (Model Context Protocol) server for Cronometer nutrition tracking, built on the reverse-engineered mobile REST API.
Unlike cronometer-mcp, which takes a comprehensive GWT-RPC approach against Cronometer's web backend, this server talks to the same JSON REST API used by the Cronometer Android app -- with clean payloads and stable, versioned endpoints.
Features
- Food log -- diary entries with food names, amounts, meal groups
- Nutrition data -- daily macro/micro totals and nutrition scores with per-nutrient confidence
- Food search -- search the Cronometer food database, get detailed nutrition info
- Diary management -- add/remove entries, copy days, mark days complete
- Custom foods -- create foods with custom nutrition data
- Macro targets -- read weekly schedule and saved templates
- Fasting -- view history and aggregate statistics
Quick Start
1. Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
2. Set credentials
export CRONOMETER_USERNAME="your@email.com"
export CRONOMETER_PASSWORD="your-password"
3. Configure your MCP client
uvx downloads and runs the server on demand -- no separate install step.
OpenCode (opencode.json)
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"cronometer": {
"type": "local",
"command": ["uvx", "cronometer-api-mcp"],
"environment": {
"CRONOMETER_USERNAME": "{env:CRONOMETER_USERNAME}",
"CRONOMETER_PASSWORD": "{env:CRONOMETER_PASSWORD}"
},
"enabled": true
}
}
}
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"cronometer": {
"command": "uvx",
"args": ["cronometer-api-mcp"],
"env": {
"CRONOMETER_USERNAME": "your@email.com",
"CRONOMETER_PASSWORD": "your-password"
}
}
}
}
Available Tools
Food Log & Nutrition
| Tool | Description |
|---|---|
get_food_log |
Diary entries for a date with food names, amounts, and meal groups |
get_daily_nutrition |
Daily macro and micronutrient totals |
get_nutrition_scores |
Category scores (Vitamins, Minerals, etc.) with per-nutrient consumed amounts and confidence levels |
Food Search & Details
| Tool | Description |
|---|---|
search_foods |
Search the Cronometer food database by name |
get_food_details |
Full nutrition profile and serving sizes for a food |
Diary Management
| Tool | Description |
|---|---|
add_food_entry |
Log a food serving to the diary |
remove_food_entry |
Remove one or more diary entries |
add_custom_food |
Create a custom food with specified nutrition |
copy_day |
Copy all entries from the previous day |
mark_day_complete |
Mark a diary day as complete or incomplete |
Targets & Tracking
| Tool | Description |
|---|---|
get_macro_targets |
Weekly macro schedule and saved target templates |
get_fasting_history |
Fasting history within a date range |
get_fasting_stats |
Aggregate fasting statistics |
All date parameters use YYYY-MM-DD format and default to today when omitted.
Remote Deployment
The server supports remote deployment with OAuth 2.1 authorization (PKCE) for use with Claude.ai and other remote MCP clients.
Environment Variables
| Variable | Required | Description |
|---|---|---|
CRONOMETER_USERNAME |
Yes | Cronometer account email |
CRONOMETER_PASSWORD |
Yes | Cronometer account password |
MCP_TRANSPORT |
No | Transport mode: stdio (default), sse, or streamable-http |
MCP_AUTH_TOKEN |
No | Bearer token for remote auth (enables OAuth flow) |
MCP_OAUTH_CLIENT_ID |
No | OAuth client ID for remote clients |
MCP_OAUTH_CLIENT_SECRET |
No | OAuth client secret for remote clients |
MCP_BASE_URL |
No | Public base URL for OAuth metadata endpoints |
PORT |
No | Listen port for remote transports (default 8000) |
Dokku / Heroku Deployment
The project includes a Procfile and .python-version for direct deployment with the Heroku Python buildpack:
# Create app
dokku apps:create cronometer-api-mcp
# Set environment
dokku config:set cronometer-api-mcp \
MCP_TRANSPORT=streamable-http \
MCP_AUTH_TOKEN=$(openssl rand -hex 32) \
MCP_OAUTH_CLIENT_ID=my-client \
MCP_OAUTH_CLIENT_SECRET=$(openssl rand -hex 32) \
MCP_BASE_URL=https://your-domain.com \
CRONOMETER_USERNAME=your@email.com \
CRONOMETER_PASSWORD=your-password
# Deploy
git push dokku main
Claude.ai Remote Connection
When deployed remotely with OAuth configured, connect from Claude.ai using:
- Server URL:
https://your-domain.com/mcp - OAuth Client ID: Value of
MCP_OAUTH_CLIENT_ID - OAuth Client Secret: Value of
MCP_OAUTH_CLIENT_SECRET
Claude.ai will open a browser tab for authorization. Click Authorize to complete the connection.
How It Works
This server communicates with mobile.cronometer.com -- the same REST API used by the Cronometer Android/Flutter app. The API was reverse-engineered through:
- Static analysis of
libapp.so(Dart AOT snapshot) from the APK to discover endpoint names - Traffic interception via Frida + mitmproxy to capture exact request/response formats
- Trial-and-error against the live API to confirm payload shapes
The API uses two protocols:
- v2 (
POST /api/v2/*) -- JSON-body auth, used for most operations (food search, diary read/write, nutrition, fasting, macros) - v3 (
DELETE /api/v3/user/{id}/*) -- Header-based auth (x-crono-session), used for diary entry deletion
Python API
You can use the client directly:
from cronometer_api_mcp.client import CronometerClient
from datetime import date
client = CronometerClient()
# Search for foods
results = client.search_food("chicken breast")
# Get food details
food = client.get_food(results[0]["id"])
# Log a serving
client.add_serving(
food_id=food["id"],
measure_id=food["defaultMeasureId"],
grams=200,
)
# Get today's diary
diary = client.get_diary()
# Get nutrition scores
scores = client.get_nutrition_scores()
License
MIT
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cronometer_api_mcp-0.1.1.tar.gz.
File metadata
- Download URL: cronometer_api_mcp-0.1.1.tar.gz
- Upload date:
- Size: 39.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cd6668824323f50a230cdbd0d1b45238d2e34a7d98c3e511d408102c4790688
|
|
| MD5 |
bccdd7bdeb305bf8cabfce73a065deb1
|
|
| BLAKE2b-256 |
5a186046ee10ce964e099d3259fb66a8755476da9576e816cfd5e59762f9efac
|
Provenance
The following attestation bundles were made for cronometer_api_mcp-0.1.1.tar.gz:
Publisher:
publish.yml on rwestergren/cronometer-api-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cronometer_api_mcp-0.1.1.tar.gz -
Subject digest:
6cd6668824323f50a230cdbd0d1b45238d2e34a7d98c3e511d408102c4790688 - Sigstore transparency entry: 1333369318
- Sigstore integration time:
-
Permalink:
rwestergren/cronometer-api-mcp@bc63a310b92e89ed0bca7e0be1685d1a6323b02a -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rwestergren
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bc63a310b92e89ed0bca7e0be1685d1a6323b02a -
Trigger Event:
release
-
Statement type:
File details
Details for the file cronometer_api_mcp-0.1.1-py3-none-any.whl.
File metadata
- Download URL: cronometer_api_mcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2ae2d23bb8e86fd6c103c76c90e824039d9c33fe4424bc9065fc58d061c1625
|
|
| MD5 |
797f59f7e5b35116d905be4f697df5b8
|
|
| BLAKE2b-256 |
6c6862362a6eb0310836e5451b787f6b5798d6486b3eaf78ff67a046a4e10736
|
Provenance
The following attestation bundles were made for cronometer_api_mcp-0.1.1-py3-none-any.whl:
Publisher:
publish.yml on rwestergren/cronometer-api-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cronometer_api_mcp-0.1.1-py3-none-any.whl -
Subject digest:
d2ae2d23bb8e86fd6c103c76c90e824039d9c33fe4424bc9065fc58d061c1625 - Sigstore transparency entry: 1333369408
- Sigstore integration time:
-
Permalink:
rwestergren/cronometer-api-mcp@bc63a310b92e89ed0bca7e0be1685d1a6323b02a -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/rwestergren
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bc63a310b92e89ed0bca7e0be1685d1a6323b02a -
Trigger Event:
release
-
Statement type: