Daily Calorie Tracker MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Daily Calorie Tracker MCP ServerLog dinner: grilled salmon with asparagus and brown rice"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Daily Calorie Tracker MCP Server
A Model Context Protocol (MCP) server for tracking daily calorie consumption through natural language interactions.
Features
Natural Language Meal Entry: Log meals using descriptions like "chicken salad and a glass of milk"
Daily Summaries: Get total calorie intake with meal breakdowns
Weekly Reports: View average consumption, trends, and achievement tracking
Food Search: Look up calorie information for specific foods
Persistent Storage: SQLite database for cross-session data retention
Related MCP server: Food Tracker MCP Server
Installation
Via npm (Recommended)
npm install -g daily-calorie-tracker-mcpFrom Source
Clone this repository
Install dependencies:
npm installBuild the project:
npm run build
MCP Server Configuration
For Claude Desktop
Add to your Claude Desktop configuration file:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
NPM Installation Configuration:
{
"mcpServers": {
"daily-calorie-tracker": {
"command": "npx",
"args": ["-y", "daily-calorie-tracker-mcp"]
}
}
}Local Installation Configuration:
{
"mcpServers": {
"daily-calorie-tracker": {
"command": "node",
"args": ["/path/to/daily-calorie-tracker/dist/index.js"]
}
}
}For Cursor
Add to your Cursor settings (~/.cursor/settings.json):
{
"mcpServers": {
"daily-calorie-tracker": {
"command": "npx",
"args": ["-y", "daily-calorie-tracker-mcp"]
}
}
}For Continue.dev
Add to your Continue configuration (~/.continue/config.json):
{
"models": [
{
"model": "claude-3-5-sonnet-latest",
"provider": "anthropic",
"mcpServers": [
{
"name": "daily-calorie-tracker",
"command": "npx",
"args": ["-y", "daily-calorie-tracker-mcp"]
}
]
}
]
}Available MCP Tools
The server provides the following tools:
add_meal
Log a meal with natural language description.
Parameters:
description(string, required): Natural language description of the meal (e.g., "chicken salad and a glass of milk")mealType(string, required): Type of meal - "breakfast", "lunch", "dinner", or "snack"
Example:
Add breakfast: oatmeal with banana and coffeeget_daily_summary
Get today's calorie intake summary with meal breakdown.
Parameters:
date(string, optional): Date in YYYY-MM-DD format (defaults to today)
Example:
Show today's calorie summaryget_weekly_report
Generate a weekly calorie consumption report with statistics.
Parameters:
startDate(string, optional): Start date in YYYY-MM-DD format (defaults to 7 days ago)
Example:
Generate weekly reportsearch_food
Search for calorie information of specific foods.
Parameters:
foodName(string, required): Name of the food to search
Example:
Search calories for pizzaUsage Examples
Once configured, you can use natural language to track your calories:
"Log breakfast: oatmeal with banana and coffee"
"Add lunch: grilled chicken salad and apple juice"
"Record dinner: pasta with tomato sauce and a glass of wine"
"I had a snack: apple and yogurt"
"Show today's calorie summary"
"What did I eat today?"
"Generate weekly report"
"Show my calorie trends for this week"
"Search calories for pizza"
"How many calories in chicken breast?"
Data Storage
Data is stored in SQLite database at:
MacOS/Linux:
~/.daily-calorie-tracker/calories.dbWindows:
%USERPROFILE%\.daily-calorie-tracker\calories.db
Food Database
The server includes a comprehensive food database with 100+ common foods organized by categories:
Proteins (chicken, beef, fish, eggs, tofu, etc.)
Carbohydrates (rice, pasta, bread, potatoes, etc.)
Vegetables (broccoli, spinach, tomatoes, etc.)
Fruits (apples, bananas, berries, etc.)
Beverages (milk, juice, coffee, tea, etc.)
Dairy products (cheese, yogurt, butter, etc.)
Common meals (hamburger, pizza, sandwiches, etc.)
Snacks (chips, nuts, chocolate, etc.)
Development
npm run dev- Run in development modenpm run build- Build for productionnpm start- Run production build
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT License - see LICENSE file for details
Repository
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityBmaintenanceEnables users to log meals, track daily and weekly calorie intake, and manage diet records. Supports both local and network modes for flexible meal logging across devices.
- Alicense-qualityFmaintenanceEnables tracking food intake and nutrition using the USDA FoodData Central database. Supports logging meals, setting daily nutrition goals, viewing food diaries, and analyzing nutrition trends over time with local SQLite storage.151MIT
- -license-quality-maintenanceEnables intelligent nutrition tracking through natural language meal logging with automatic macro calculation using the FoodData Central API. Users can set daily macro goals, review meal history, and monitor nutritional progress through local JSON storage.
- Flicense-qualityFmaintenanceTracks daily calorie intake with accurate BMR/TDEE calculations, food logging, and profile management via Cloudflare Workers and D1 database.4
Related MCP Connectors
Personal nutrition tracking — log meals, track macros, review history, import from another app.
Create Hevy routines and analyze your training from chat. Unofficial; BYO Hevy PRO API key.
Resolve Japanese food names to nutrition facts. All 2,538 foods from Japan's official tables.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/VeriTeknik/daily-calorie-tracker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server