loseit-mcp
The server provides unofficial private API access to Lose It! for managing nutrition and weight. Capabilities include:
Search food: Find food items by name (
search_food).Describe food: Get nutrition and serving details for a food ID (
describe_food).Read diary: View a day's entries with calories, macros, and totals (
get_diary).Log database food: Add a food to a meal with portion control; dry-run supported (
log_food).Log custom food: Record entries with arbitrary calories/macros; dry-run supported (
log_custom_food).Record weight: Log a weigh-in; dry-run supported (
log_weight).View weight history: Retrieve weigh-ins over a range (
get_weight_history).Delete entries: Remove a diary entry, with local backup (
delete_entry).Check account: Display authenticated user (
whoami).
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., "@loseit-mcpsearch for Greek yogurt"
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.
loseit-mcp
An MCP server and CLI for logging food to Lose It!.
⚠️ Unofficial. Lose It! publishes no public API. This talks to the private GWT-RPC endpoint used by the Lose It! web app, so it can break whenever they ship a new web build.
Tools
Tool | Description |
| Search the food database; returns |
| Full nutrition and serving detail for one food |
| A day's entries with calories and macros, plus totals |
| Log a database food to a meal |
| Log arbitrary calories/macros with no database match |
| Record a weigh-in |
| Read weigh-ins over a range, with min/max/change |
| Delete a diary entry |
| Show the authenticated account |
log_custom_food exists because updateFoodLogEntry carries the food's name,
brand, and nutrient map inline — so an entry can describe a food the database
has never heard of. Use it for restaurant meals, homemade dishes, or any
portion where forcing a database match would distort the numbers.
Related MCP server: nutrition-mcp
Setup
uv sync
cp .env.example .env # then fill in your credentialsConfiguration
Settings resolve in priority order: CLI flags → environment → .env → JSON
config file → defaults.
Variable | Required | Description |
| yes* | Lose It! account email |
| yes* | Lose It! account password |
| no | A |
| no | UTC offset in whole hours; auto-detected |
| no | GWT permutation, if Lose It ships a new build |
| no | GWT policy hash, if Lose It ships a new build |
* Not required if LOSEIT_TOKEN is set.
.env is gitignored. The session token is cached at
~/.config/loseit-mcp/session.json with owner-only permissions and refreshes
automatically when it expires.
Running the server
loseit-mcp serve # stdio (default)
loseit-mcp serve --transport streamable-http --port 8000Register the stdio server with an MCP client:
{
"mcpServers": {
"loseit": {
"command": "uv",
"args": ["run", "loseit-mcp", "serve"],
"cwd": "/absolute/path/to/loseit-mcp"
}
}
}To host one server for multiple accounts, see DEPLOYMENT.md.
CLI
The same operations are available directly, which is the easiest way to test:
loseit-mcp search "greek yogurt" -n 5
loseit-mcp describe <food_id>
loseit-mcp diary 2026-07-25
loseit-mcp log <food_id> -m lunch -a 120 -u g
loseit-mcp log-custom "Caesar Salad" 620 -m lunch -b "Gastrohub" -p 46 -c 18 -f 40
loseit-mcp weigh 199.2
loseit-mcp weights -n 14
loseit-mcp delete <entry_id> -d 2026-07-25Add --dry-run to either log command to preview the math without writing, and
--json for machine-readable output.
Two more, for hosted deployments:
loseit-mcp gen-secret # a secret for LOSEIT_URL_SECRET
loseit-mcp enroll https://<host> # get a credential URL for a clientA hosted deployment also serves a self-service enrollment page at /: someone
enters their Lose It! email and password and gets their own MCP URL back, ready
to paste into Claude, ChatGPT, or any other MCP client. Credentials are checked
against Lose It before a URL is issued, so a typo fails immediately instead of
producing a link that silently doesn't work.
The page is a single self-contained document under a strict CSP — no external scripts, styles, or fonts — so nothing but Lose It ever sees the credentials. Nothing is stored: the password is used once, in memory, and then encrypted into the URL itself, which is why there is no database and no account system.
Notes
Deleting writes a recoverable copy to local trash before the wire call.
When Lose It changes their private API, tools return an explanation of what broke and what the operator needs to refresh, rather than a decoder traceback — see
errors.py.Hosted deployments rate-limit per client address and per credential, since an address alone is a weak identity behind a NAT pool. Enrollment adds a third limit, per email address, so verifying credentials can't be used to guess them.
/healthzreports the running version and commit, so you can tell what is actually deployed without reading logs.Weights carry no unit over the wire; the number is interpreted in whatever unit the account displays (lb or kg).
saturated_fat_gis not recorded. The upstream SDK's payload builder filters that nutrient ordinal out, solog_custom_foodreports it in anignored_nutrientsfield rather than claiming to have logged it. Every other macro goes through.Weight history is fetched in windows and bisected further when a response is too large for the SDK decoder — an unchunked year-long query would otherwise silently return "no weigh-ins".
Relative dates (
today/yesterday) resolve in the account's timezone, not the host's, so a server in another region doesn't log to the wrong day.Fractional portions of database foods can display a misleading unit (half a banana rendering as "1/4 Each") because the server's canonical serving count differs from the food's native unit. Calories stay correct, but
log-customis the more predictable route for odd portions.
Architecture
The GWT-RPC wire format is handled by the
phitoduck/lose-it SDK. This project
adds email/password authentication (the SDK expects you to supply a JWT
yourself, and its browser-cookie import does not support Windows), the
custom-food logging path, weight recording via saveRecordedWeight (captured
from the web app's weigh-in widget), and the MCP server and CLI layers.
License
0BSD — the BSD Zero Clause License. Use it, change it, ship it, sell it. No attribution, no notice, no conditions of any kind.
This is deliberate. If FitNow (the makers of Lose It!) want any part of this, they should take it and treat it as their own — no permission needed, nothing to negotiate, no obligation to credit me. The same goes for anyone else.
Two things a license cannot do, stated plainly:
Trademark is separate. "Lose It!" is a registered trademark of FitNow, Inc. This project is unofficial and unaffiliated; the license grants no rights in their marks.
Dependencies keep their own terms. They are all permissive (MIT, BSD-3, Apache-2.0), but the
lose-itSDK is MIT and asks that its copyright notice be preserved. Anyone vendoring this code should either keep that notice or replace the dependency.
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
- AlicenseAqualityBmaintenanceMCP server for managing food diary, nutrition tracking, meal planning, and weight logging via the FatSecret Platform API.Last updated15MIT
- Alicense-qualityDmaintenanceMCP server for USDA nutrition data lookup, meal logging, and daily macro tracking.Last updated36MIT
- AlicenseAqualityAmaintenanceA local-first nutrition MCP server for food search, barcode lookup, meal estimation, intake logging, hydration, and nutrition coaching workflows.Last updated462587MIT
- Alicense-qualityBmaintenanceMCP server that reads local SQLite database populated by a Playwright scraper to provide daily summary, food log, weight history, and water log from LoseIt.Last updatedMIT
Related MCP Connectors
MCP server for Withings health data — sleep, activity, heart, and body metrics.
A basic MCP server to operate on the Postman API.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
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/cabird/loseit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server