MCP server for Cronometer — food logs, macros, fasting, biometrics, and recurring foods
MCPpedia last refreshed this data
Cronometer MCP Server is an MCP server that MCP server for Cronometer — food logs, macros, fasting, biometrics, and recurring foods. Its tool list has not been published yet over stdio, requires no API key, and scores 80/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cronometer": {
"env": {
"CRONOMETER_PASSWORD": "your-password",
"CRONOMETER_USERNAME": "your@email.com"
},
"command": "cronometer-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that provides access to your Cronometer nutrition data. Pull detailed food logs, daily macro/micro summaries, manage diary entries, fasting, biometrics, and recurring foods — all from Claude, Cursor, or any MCP-compatible client.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'cronometer-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked cronometer-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in health
MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.
MCP server for Withings health data — sleep, activity, heart, and body metrics.
基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server
Interventional pain medicine MCP: Medicare checklists, CPT/ICD-10, ASRA, prior-auth & appeals
MCP Security Weekly
Get CVE alerts and security updates for Cronometer MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that provides access to your Cronometer nutrition data. Pull detailed food logs, daily macro/micro summaries, manage diary entries, fasting, biometrics, and recurring foods — all from Claude, Cursor, or any MCP-compatible client.
Requires a Cronometer Gold account (or any paid tier that supports web login).
pip install cronometer-mcp
Or install from source:
git clone https://github.com/cphoskins/cronometer-mcp.git
cd cronometer-mcp
pip install -e .
export CRONOMETER_USERNAME="your@email.com"
export CRONOMETER_PASSWORD="your-password"
Or add them to a .env file in your project root (if your MCP client supports it).
.mcp.json){
"mcpServers": {
"cronometer": {
"command": "cronometer-mcp",
"env": {
"CRONOMETER_USERNAME": "your@email.com",
"CRONOMETER_PASSWORD": "your-password"
}
}
}
}
claude_desktop_config.json){
"mcpServers": {
"cronometer": {
"command": "cronometer-mcp",
"env": {
"CRONOMETER_USERNAME": "your@email.com",
"CRONOMETER_PASSWORD": "your-password"
}
}
}
}
If you installed from source with pip install -e ., you can also use the full Python path:
{
"command": "/path/to/venv/bin/python",
"args": ["-m", "cronometer_mcp.server"]
}
| Tool | Description |
|---|---|
get_food_log | Individual food entries with macros + micros for a date range |
get_daily_nutrition | Daily macro totals (calories, protein, carbs, fat, fiber) |
get_micronutrients | Detailed vitamin/mineral breakdown with period averages |
export_raw_csv | Raw CSV export for any data type (servings, exercises, biometrics, etc.) |
| Tool | Description |
|---|---|
search_foods | Search the Cronometer food database |
list_diary_groups | List this account's diary groups and the values diary_group accepts |
get_food_details | Get full nutrition info and serving measure IDs for a food |
add_food_entry | Add a food entry to the diary |
remove_food_entry | Remove a food entry from the diary |
copy_day | Copy all diary entries from one date to another |
set_day_complete | Mark a diary day as complete or incomplete |
| Tool | Description |
|---|---|
get_repeated_items | List all recurring food entries |
add_repeat_item | Add a recurring food entry that auto-logs on selected days |
delete_repeat_item | Delete a recurring food entry |
| Tool | Description |
|---|---|
get_macro_targets | Get daily macro targets (or full weekly schedule with target_date="all") |
set_macro_targets | Update daily macro targets (partial update |