fatsecret-mcp-server
MCP server for managing food diary, nutrition tracking, meal planning, and weight logging via the FatSecret Platform API.
README
FatSecret MCP Server
MCP server for managing your food diary, nutrition tracking, meal planning, and weight logging via the FatSecret Platform API.
Tools Available
| Tool | Description |
|---|---|
fatsecret_search_food |
Search food database by name |
fatsecret_get_food |
Get full nutrition details for a food |
fatsecret_create_food_entry |
Log food to diary |
fatsecret_edit_food_entry |
Edit existing diary entry |
fatsecret_delete_food_entry |
Delete diary entry |
fatsecret_get_food_entries |
Get all entries for a date |
fatsecret_get_food_entries_month |
Monthly diary summary |
fatsecret_create_saved_meal |
Create reusable meal template |
fatsecret_add_food_to_saved_meal |
Add food to a saved meal |
fatsecret_get_saved_meals |
List saved meal templates |
fatsecret_copy_saved_meal_to_diary |
Paste saved meal into diary |
fatsecret_update_weight |
Log weight for a date |
fatsecret_get_weights_month |
Monthly weight history |
fatsecret_get_recently_eaten |
Recently logged foods |
fatsecret_copy_day |
Copy all entries between dates |
Setup
1. Register for FatSecret API
- Go to https://platform.fatsecret.com/register
- Create a developer account
- Note your IP address and add it to the IP whitelist on the developer dashboard (required for OAuth 2.0 — can take up to 24h to propagate)
2. Get API Credentials
FatSecret uses separate credentials for OAuth 1.0a and OAuth 2.0:
On your developer dashboard, you'll find two credential sections:
| Section | Key | Secret | Used for |
|---|---|---|---|
| REST API OAuth 1.0 Credentials | Consumer Key | Consumer Secret | Food diary, weight, saved meals (user-level access) |
| OAuth 2.0 Credentials | Client ID | Client Secret | Food search, food details (app-level access) |
The Consumer Key and Client ID are the same value. The secrets are different — this is a common source of confusion.
3. Get User OAuth Tokens (3-legged OAuth 1.0a)
For diary and weight tools, you need user-level access tokens. Run the included setup script:
FATSECRET_CLIENT_ID=your_consumer_key \
FATSECRET_CLIENT_SECRET=your_consumer_secret \
node scripts/oauth-setup.js
This will:
- Start a local web server at
http://localhost:9876 - Open your browser to authorize with FatSecret
- Complete the OAuth 1.0a 3-legged flow
- Display your
FATSECRET_ACCESS_TOKENandFATSECRET_ACCESS_TOKEN_SECRET
Note: The OAuth flow uses authentication.fatsecret.com (not www.fatsecret.com). You must log in with a FatSecret user account (the same one you use in the FatSecret mobile app), not your developer account.
4. Environment Variables
# Required — same value, shown as "Consumer Key" / "Client ID"
export FATSECRET_CLIENT_ID="your_consumer_key"
# OAuth 1.0a Consumer Secret (from "REST API OAuth 1.0 Credentials")
# Used for: diary, weight, saved meals, recently eaten
export FATSECRET_CONSUMER_SECRET="your_consumer_secret"
# OAuth 2.0 Client Secret (from "OAuth 2.0 Credentials")
# Used for: food search, food details
export FATSECRET_OAUTH2_CLIENT_SECRET="your_oauth2_client_secret"
# User tokens from the 3-legged OAuth flow (step 3)
export FATSECRET_ACCESS_TOKEN="your_access_token"
export FATSECRET_ACCESS_TOKEN_SECRET="your_access_token_secret"
Legacy fallback: If you set FATSECRET_CLIENT_SECRET instead of the two separate secrets, it will be used for both OAuth flows. This only works if your Consumer Secret and Client Secret happen to be the same value (they aren't on most accounts).
5. Build & Run
npm install
npm run build
npm start
6. Configure in Claude Desktop
Add to your Claude Desktop MCP config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"fatsecret": {
"command": "node",
"args": ["/path/to/fatsecret-mcp-server/dist/index.js"],
"env": {
"FATSECRET_CLIENT_ID": "your_consumer_key",
"FATSECRET_CONSUMER_SECRET": "your_oauth1_consumer_secret",
"FATSECRET_OAUTH2_CLIENT_SECRET": "your_oauth2_client_secret",
"FATSECRET_ACCESS_TOKEN": "your_access_token",
"FATSECRET_ACCESS_TOKEN_SECRET": "your_access_token_secret"
}
}
}
}
Option B: Directly from GitHub (no local clone)
{
"mcpServers": {
"fatsecret": {
"command": "npx",
"args": ["-y", "github:Yurzs/fatsecret-mcp-server"],
"env": {
"FATSECRET_CLIENT_ID": "your_consumer_key",
"FATSECRET_CONSUMER_SECRET": "your_oauth1_consumer_secret",
"FATSECRET_OAUTH2_CLIENT_SECRET": "your_oauth2_client_secret",
"FATSECRET_ACCESS_TOKEN": "your_access_token",
"FATSECRET_ACCESS_TOKEN_SECRET": "your_access_token_secret"
}
}
}
}
This downloads and runs the server directly from the repo — no git clone, npm install, or npm run build needed. npx caches it locally after the first run.
Note: If you've used this before and need to pull updates, clear the npx cache first:
rm -rf ~/.npm/_npx
Getting user tokens without cloning
You can run the OAuth setup script directly too:
npx -y github:Yurzs/fatsecret-mcp-server/scripts/oauth-setup.js
Or with a one-liner using curl:
curl -sL https://raw.githubusercontent.com/Yurzs/fatsecret-mcp-server/master/scripts/oauth-setup.js | \
FATSECRET_CLIENT_ID=your_key FATSECRET_CLIENT_SECRET=your_consumer_secret node -
This starts a local server at http://localhost:9876, opens your browser, and walks you through the FatSecret authorization. The tokens are printed to the terminal when complete.
Typical Workflow
- Search for a food:
fatsecret_search_food("chicken breast") - Get details to find serving_id:
fatsecret_get_food(food_id) - Log it:
fatsecret_create_food_entry(food_id, "Chicken Breast", serving_id, 2.5, "lunch") - Review day:
fatsecret_get_food_entries("2026-05-16") - Track weight:
fatsecret_update_weight(77.5, "2026-05-16")
Troubleshooting
"Invalid IP address detected" — Add your public IP to the whitelist at https://platform.fatsecret.com. Propagation can take minutes to hours.
"Invalid signature" on OAuth 1.0a requests — You're likely using the OAuth 2.0 Client Secret instead of the OAuth 1.0a Consumer Secret. These are different values on most accounts. Check the "REST API OAuth 1.0 Credentials" section on your dashboard.
OAuth setup can't log in — The authorization page at authentication.fatsecret.com requires a FatSecret user account (the mobile app account), not your developer account. If you signed up via Apple/Google, do a password reset to set a native password.
API Tier
The free Basic tier (5,000 calls/day) is sufficient for personal use. Apply for Premier Free if you want barcode scanning and autocomplete.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。