Nutrition Skill
The tool
Give your agent nutrition facts for whole foods. Call it as an MCP tool to pull calories, macros and a full micronutrient panel for any food by name.
Once your client is connected to the VerveKit MCP server, this appears in its tool list as NutritionSkill. It is read-only and open-world: it fetches, it never mutates anything on your side, so most clients will call it without asking you to confirm.
{
"name": "NutritionSkill",
"arguments": {
"food": "banana"
}
}What that looks like in a conversation
You don't name the tool — the model picks it. Asking about banana in the terms this source covers is enough for it to reach for NutritionSkill on its own.
Connecting
One server URL covers every skill in the catalog, including this one. Authorization is OAuth — the client opens a browser once and there is no key to paste into a config file.
{
"mcpServers": {
"vervekit": {
"url": "https://api.vervekit.com/v1/mcp"
}
}
}https://api.vervekit.com/v1/mcpPer-client setup — Claude Desktop, Cursor, VS Code, ChatGPT — is on the MCP setup page.
Arguments
These are the properties on the tool's inputSchema, so a well-behaved client validates them before the call is made.
| Argument | Type | Example | Description |
|---|---|---|---|
foodRequired | string | banana | Name of the food to look up (e.g. banana, chicken breast, olive oil) |
gramsPremium | number | 118 | Serving weight in grams to scale the nutrition panel to. Defaults to a per-100-gram basis. |
What the model gets back
The result carries a structuredContent object matching the tool's declared outputSchema, so a client can read fields without parsing prose. status is "ok" on success and error is null; a null field means the value wasn't available for that input, not that the call failed.
{
"status": "ok",
"error": null,
"data": {
"food": "Bananas, raw",
"fdcId": 173944,
"category": "Fruits and Fruit Juices",
"basis": "per 100g",
"servingSizes": [
{
"label": "1 NLEA serving",
"grams": 126
},
{
"label": "1 extra large (9\" or longer)",
"grams": 152
},
{
"label": "1 large (8\" to 8-7/8\" long)",
"grams": 136
}
],
"nutrition": {
"calories": 89,
"protein": 1.09,
"totalFat": 0.33,
"carbohydrates": 22.8,
"fiber": 2.6,
"sugars": 12.2
},
"micronutrients": {
"sodium": 1,
"potassium": 358,
"cholesterol": 0,
"saturatedFat": 0.112,
"transFat": 0,
"monounsaturatedFat": 0.032,
"polyunsaturatedFat": 0.073,
"calcium": 5,
"iron": 0.26,
"magnesium": 27,
"phosphorus": 22,
"zinc": 0.15,
"vitaminC": 8.7,
"vitaminA": 3,
"vitaminD": 0,
"vitaminE": 0.1,
"vitaminK": 0.5,
"thiamin": 0.031,
"riboflavin": 0.073,
"niacin": 0.665,
"vitaminB6": 0.367,
"folate": 20,
"vitaminB12": 0,
"water": 74.9
},
"analytics": {
"caloriesPerGram": 0.89,
"proteinCaloriePercent": 4.4,
"fatCaloriePercent": 3,Fields
| Field | Type | Example | Description |
|---|---|---|---|
food | string | Bananas, raw | Matched food name from the USDA database |
fdcId | number | 173944 | USDA FoodData Central unique identifier for the food |
category | string | Fruits and Fruit Juices | USDA food category the item belongs to |
basis | string | per 100g | Basis the nutrition values are reported on (per 100g, or the requested serving) |
servingSizes | array[3] | list of rows | Common household serving sizes reported for the food |
servingSizes.0.label | string | 1 NLEA serving | |
servingSizes.0.grams | number | 126 | |
nutrition | object | {…} | Headline calories and macronutrients |
nutrition.calories | number | 89 | Energy in kilocalories |
nutrition.protein | number | 1.09 | Protein in grams |
nutrition.totalFat | number | 0.33 | Total fat in grams |
nutrition.carbohydrates | number | 22.8 | Total carbohydrates in grams |
nutrition.fiber | number | 2.6 | Dietary fiber in grams |
nutrition.sugars | number | 12.2 | Total sugars in grams |
micronutrients | object | {…} | Full micronutrient panel |
micronutrients.sodiumPremium | number | 1 | Sodium in milligrams |
micronutrients.potassiumPremium | number | 358 | Potassium in milligrams |
micronutrients.cholesterolPremium | number | 0 | Cholesterol in milligrams |
micronutrients.saturatedFatPremium | number | 0.112 | Saturated fat in grams |
micronutrients.transFatPremium | number | 0 | Trans fat in grams |
micronutrients.monounsaturatedFatPremium | number | 0.032 | Monounsaturated fat in grams |
micronutrients.polyunsaturatedFatPremium | number | 0.073 | Polyunsaturated fat in grams |
micronutrients.calciumPremium | number | 5 | Calcium in milligrams |
micronutrients.ironPremium | number | 0.26 | Iron in milligrams |
micronutrients.magnesiumPremium | number | 27 | Magnesium in milligrams |
micronutrients.phosphorusPremium | number | 22 | Phosphorus in milligrams |
micronutrients.zincPremium | number | 0.15 | Zinc in milligrams |
micronutrients.vitaminCPremium | number | 8.7 | Vitamin C in milligrams |
micronutrients.vitaminAPremium | number | 3 | Vitamin A in micrograms |
micronutrients.vitaminDPremium | number | 0 | Vitamin D in micrograms |
micronutrients.vitaminEPremium | number | 0.1 | Vitamin E in milligrams |
micronutrients.vitaminKPremium | number | 0.5 | Vitamin K in micrograms |
micronutrients.thiaminPremium | number | 0.031 | Thiamin (B1) in milligrams |
micronutrients.riboflavinPremium | number | 0.073 | Riboflavin (B2) in milligrams |
micronutrients.niacinPremium | number | 0.665 | Niacin (B3) in milligrams |
micronutrients.vitaminB6Premium | number | 0.367 | Vitamin B6 in milligrams |
micronutrients.folatePremium | number | 20 | Folate in micrograms |
micronutrients.vitaminB12Premium | number | 0 | Vitamin B12 in micrograms |
micronutrients.waterPremium | number | 74.9 | Water content in grams |
analytics | object | {…} | Derived nutrition intelligence |
analytics.caloriesPerGramPremium | number | 0.89 | Energy density in calories per gram |
analytics.proteinCaloriePercentPremium | number | 4.4 | Share of calories from protein (percent) |
analytics.fatCaloriePercentPremium | number | 3 | Share of calories from fat (percent) |
analytics.carbCaloriePercentPremium | number | 92.6 | Share of calories from carbohydrate (percent) |
analytics.proteinPer100CaloriesPremium | number | 1.22 | Grams of protein per 100 calories |
dailyValues | object | {…} | Percent of the FDA Daily Value each nutrient supplies on the reported basis |
dailyValues.proteinPremium | number | 2.2 | Protein as a percent of the Daily Value |
dailyValues.totalFatPremium | number | 0.4 | Total fat as a percent of the Daily Value |
dailyValues.saturatedFatPremium | number | 0.6 | Saturated fat as a percent of the Daily Value |
dailyValues.cholesterolPremium | number | 0 | Cholesterol as a percent of the Daily Value |
dailyValues.sodiumPremium | number | 0 | Sodium as a percent of the Daily Value |
dailyValues.carbohydratesPremium | number | 8.3 | Total carbohydrates as a percent of the Daily Value |
dailyValues.fiberPremium | number | 9.3 | Dietary fiber as a percent of the Daily Value |
dailyValues.potassiumPremium | number | 7.6 | Potassium as a percent of the Daily Value |
dailyValues.calciumPremium | number | 0.4 | Calcium as a percent of the Daily Value |
dailyValues.ironPremium | number | 1.4 | Iron as a percent of the Daily Value |
dailyValues.magnesiumPremium | number | 6.4 | Magnesium as a percent of the Daily Value |
dailyValues.phosphorusPremium | number | 1.8 | Phosphorus as a percent of the Daily Value |
dailyValues.zincPremium | number | 1.4 | Zinc as a percent of the Daily Value |
dailyValues.vitaminCPremium | number | 9.7 | Vitamin C as a percent of the Daily Value |
Failure modes
Errors come back as tool errors with a sentence the model can act on, not a bare status code.
| Status | What it means |
|---|---|
400 / 422 | The arguments didn't validate. The message names the offending one. |
401 | The OAuth session is invalid or expired — reconnect the server. |
403 | Out of credits. Not a bad key — the month's allowance is spent. |
404 | This skill isn't part of VerveKit. Check the catalog. |
429 | Brief rate limit. Retrying after a moment succeeds. |
Other ways to use Nutrition Skill
Set up Nutrition Skill on VerveKit, or reach the same source a different way. Your VerveKit account and credits work on all of them — one key, one balance.
Frequently asked questions
Do I have to tell the agent to use NutritionSkill?
No. The tool's name and description are in the model's context once the server is connected, so it selects the tool when the question calls for it. Naming it explicitly works too and is useful when you want to force the call.
Does connecting the server expose every tool at once?
Yes — one connection lists the whole VerveKit catalog. Clients with a tool budget can usually filter the list; the credit cost is per call, so an unused tool costs nothing.
What does a call cost?
1 credit each time the tool actually runs. A model that reasons about the tool without calling it costs nothing.
Is there a REST version of this?
Yes — the same source is available as a plain HTTPS endpoint on APIVerve, linked above. Same data, same credits, same account.