MCP server exposing a USDA-accurate food database with deterministic macro math — no hallucinated nutrition numbers.
Project description
usda-mcp
An MCP server that gives Claude a USDA-accurate food database and deterministic macro math — so it looks nutrition numbers up instead of recalling them, and calculates portions in Python instead of doing mental arithmetic.
Ask "build me a high-protein vegan dinner at 40g protein, 30g carb, 15g fat" and you get an answer whose numbers are exactly right, because a linear solver produced them.
You: high protein vegan dinner, 40g protein / 30g carb / 15g fat
Claude: 147 g Beans (Dry) ....... 37.5g pro, 0g carb, 1.5g fat
5 oz Sweet Potato ...... 2.5g pro, 30g carb, 0g fat
0.96 tbsp Olive Oil .... 0g pro, 0g carb, 13.5g fat
-----------------------------------------------------------
Total .................. 40.0g pro, 30.0g carb, 15.0g fat — 415 kcal
Why this exists
LLMs are unreliable at two things this domain depends on: recalling specific nutrition values, and arithmetic. Ask a model for the macros in 6 oz of chicken breast and you get a plausible number that is often wrong by 15–20%.
This server removes both failure modes. It contains no AI logic at all — no model calls, no embeddings, no semantic search. It is a database and a pile of arithmetic. The calling model does the reasoning ("what counts as light?", "what goes with salmon?") and this server supplies every number.
Install
Requires uv (or any Python 3.10+ environment). Nothing else — no API key, no network access, no external services. It runs fully offline.
Add this to your Claude Desktop config:
macOS — ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"usda-mcp": {
"command": "uvx",
"args": ["usda-mcp"]
}
}
}
Windows — %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"usda-mcp": {
"command": "uvx",
"args": ["usda-mcp"]
}
}
}
Restart Claude Desktop. You should see six tools appear under the tools icon.
Running from a clone instead
git clone https://github.com/Asquarer02/usda-mcp
cd usda-mcp
uv sync
uv run usda-mcp # serves MCP over stdio
Then point the config at the checkout:
{
"mcpServers": {
"usda-mcp": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/usda-mcp", "run", "usda-mcp"]
}
}
}
Tools
| Tool | What it does |
|---|---|
list_foods |
Browse or filter the database by category, descriptive tags, or dietary exclusions. |
get_food |
Look up one food by name, tolerant of casing and missing qualifiers. |
calculate_macros |
Scale a food to a real portion, converting units where physically valid. |
filter_by_diet |
Every food compatible with one restriction (vegan, gluten, shellfish, …). |
build_meal |
Solve for portions of one protein + one carb + one fat that hit macro targets. |
list_available_tags |
The real filter vocabulary, so the model never guesses a label that doesn't exist. |
Example prompts
- "What are the macros in 6 oz of chicken breast?"
- "Give me a high-protein vegan dinner at 40g protein, 30g carb, 15g fat."
- "Show me every lean protein that isn't fish or shellfish."
- "I have 25g of protein left today and no carbs — what should I eat?"
- "Build three different 500-calorie gluten-free lunches."
What the tools actually return
get_food("salmon") — loose name, resolved:
{
"name": "Salmon", "category": "proteins", "unit": "oz",
"pro": 6.5, "carb": 0, "fat": 3.5,
"tags": ["fatty_fish", "omega3"],
"exclude_for": ["vegetarian", "vegan", "fish", "seafood"],
"calories_per_unit": 57.5
}
calculate_macros("Chicken Breast (Cooked)", 6, "oz") — the database stores this food per
gram, so the ounces are converted before scaling:
{
"food": "Chicken Breast (Cooked)",
"amount": 6.0, "unit": "oz",
"amount_in_native_units": 170.0971, "native_unit": "g",
"protein_g": 54.6, "carb_g": 0.0, "fat_g": 5.51, "calories": 268.0
}
How it works
Calories are derived, never stored. The dataset holds only protein, carb and fat, and
calories come from the Atwater factors (4/4/9) in one function. There is no second source
of truth to drift.
build_meal is a solver, not a search. One protein, one carb and one fat with three
macro targets is a 3×3 linear system; it's solved by Cramer's rule for every combination in
the database — roughly 164,000 of them — in well under a second. Fits are exact, not
"within tolerance".
Exactness turns out to be the easy part. For a 40/30/15 target, 77,026 combinations hit it exactly, including useless ones like 0.02 tbsp of ghee. So solutions are filtered for realistic portion sizes and ranked by how normal the servings look. Ties break on database order, so the same request always returns the same meal.
Impossible requests are reported, not faked. Ask for 200g of protein with zero carbs and
zero fat and you get exact_match: false, the closest achievable combination, and the real
per-macro error — never a fabricated fit.
Bad input gets a usable error, never silence. Every failure explains itself:
{
"error": "unit_mismatch",
"message": "Cannot convert 'g' to 'tbsp': 'g' is a mass unit and 'tbsp' is a volume unit.
This database does not store densities, so mass and volume are not interchangeable.",
"food": "Extra Virgin Olive Oil",
"native_unit": "tbsp",
"hint": "Extra Virgin Olive Oil is stored per 'tbsp'. Retry with unit='tbsp', or with any
unit in the same measurement family."
}
Grams to tablespoons needs a density this dataset doesn't carry, so the conversion is refused rather than guessed. A wrong answer here would silently corrupt every number downstream.
Similarly, filter_by_diet("keto") returns an error rather than the whole database:
keto isn't a label in the data, so filtering on it would remove nothing while looking
like it worked.
The data
236 hand-curated entries across proteins (67), carbs (70), fats (35) and vegetables (64),
with macros matching USDA FoodData Central values. Each entry carries descriptive tags
(lean, omega3, whole_food) and exclude_for dietary/allergen labels (vegan,
gluten, shellfish). 90 distinct tags and 38 exclusion labels are in use.
Macros are stored per the unit that's natural for each food — grams for meat, ounces for
fish, tablespoons for oils, large for eggs, container for yogurt cups. calculate_macros
handles the conversion; list_available_tags reports the real vocabulary.
The test suite guards the dataset itself: unique names, non-negative macros, consistent tag casing, and units the converter can classify.
Not medical or dietary advice. These are reference values for general meal planning. Real foods vary by brand, cut, and preparation. Consult a qualified professional for clinical or therapeutic dietary decisions.
Development
uv sync
uv run pytest # 346 tests
uv run ruff check .
uv run ruff format .
The layout separates concerns so the logic is testable without an MCP client:
src/usda_mcp/
├── server.py # tool definitions and docstrings only
├── nutrition.py # calories, unit conversion, lookup, filtering
├── meal_builder.py # the deterministic solver
└── food_database.py # the data, and nothing else
Tool docstrings are treated as a deliverable rather than decoration — they're the entire interface the calling model sees, so they state exact enum values, which units convert, and what every failure returns. A test enforces that they stay substantial.
Roadmap
- Live USDA FoodData Central lookups — an optional
search_usdatool backed by the official API for foods outside the curated set, behind the same tool interface. Would require an API key and unit normalisation, so it's deliberately out of v1. - Per-food micronutrients (fibre, sodium, saturated fat).
- Multi-meal daily planning against a calorie budget.
Contributing
Issues and PRs welcome. Adding foods is the easiest contribution: append an entry to the
right category in src/usda_mcp/food_database.py with USDA-sourced macros per unit, and
tests/test_database.py will verify it. Please run uv run pytest and uv run ruff check .
before opening a PR.
License
MIT — see LICENSE.
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 usda_mcp-0.1.0.tar.gz.
File metadata
- Download URL: usda_mcp-0.1.0.tar.gz
- Upload date:
- Size: 37.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec7e560580e2840b6c0d87d2a5e9c19d204d2fa637b598a4aa31e737247d6736
|
|
| MD5 |
f901026481c718037422141221db1b63
|
|
| BLAKE2b-256 |
dea765293ab6aed1c560d3d1c348b5c4ae650a2050065a566099ee8ccda47825
|
Provenance
The following attestation bundles were made for usda_mcp-0.1.0.tar.gz:
Publisher:
release.yml on Asquarer02/usda-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
usda_mcp-0.1.0.tar.gz -
Subject digest:
ec7e560580e2840b6c0d87d2a5e9c19d204d2fa637b598a4aa31e737247d6736 - Sigstore transparency entry: 2302891588
- Sigstore integration time:
-
Permalink:
Asquarer02/usda-mcp@a277e32f594560355dba8b647dae99bea9f34f51 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Asquarer02
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a277e32f594560355dba8b647dae99bea9f34f51 -
Trigger Event:
push
-
Statement type:
File details
Details for the file usda_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: usda_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 28.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13bd77133ecf3a0510301525aa7bb4fed03b0f5f2c4d5b68aca6355fea8aaad3
|
|
| MD5 |
07ed169b50fdfbd464723babf1d6bcdb
|
|
| BLAKE2b-256 |
de488d28a9a01c97cf9ce15a2e1e1b8bbb50aa08c48434faef9cc623ba9575da
|
Provenance
The following attestation bundles were made for usda_mcp-0.1.0-py3-none-any.whl:
Publisher:
release.yml on Asquarer02/usda-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
usda_mcp-0.1.0-py3-none-any.whl -
Subject digest:
13bd77133ecf3a0510301525aa7bb4fed03b0f5f2c4d5b68aca6355fea8aaad3 - Sigstore transparency entry: 2302891657
- Sigstore integration time:
-
Permalink:
Asquarer02/usda-mcp@a277e32f594560355dba8b647dae99bea9f34f51 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Asquarer02
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a277e32f594560355dba8b647dae99bea9f34f51 -
Trigger Event:
push
-
Statement type: