Japanese food nutrition for AI assistants. Bilingual JP/EN lookups across konbini, restaurants, and grocery brands. Macros, allergens, sodium. 460 cited items, all sourced from official labels or Japan's MEXT food composition database.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
claude mcp add tabedata-mcp -- npx -y tabedata-mcp{
"mcpServers": {
"tabedata-mcp": {
"command": "npx",
"args": ["-y", "tabedata-mcp"]
}
}
}MCP Servers overview
# tabedata-mcp
[](https://github.com/mrslbt/tabedata-mcp/actions/workflows/ci.yml)
[](https://www.npmjs.com/package/tabedata-mcp)
[](https://www.npmjs.com/package/tabedata-mcp)
[](LICENSE)
Model Context Protocol server for Japanese food nutrition data. Bilingual JP/EN lookups across konbini, restaurant chains, and grocery brands. Macros, allergens, sodium, and menu navigation for any AI assistant operating in Japan.
460 sourced items across 21 chains. 42 come from Japan's MEXT food composition database (36 generic staples + 6 drinks); the rest are transcribed from official manufacturer labels and restaurant nutrition PDFs, with ~10% flagged as estimates where official figures weren't available. Size variants (並 / 大盛 / 特盛) on every restaurant chain that publishes them.
## Who this is for
- Tracking macros, sodium, or carbs on a Japanese diet
- Looking up allergens on a menu you can't read
- Travelers using an AI assistant to navigate Japanese restaurants and konbini
- Comparing options across chains ("which chain has the leanest chicken?")
- Building nutrition or meal apps that need real Japanese product data
## Install
```bash
npm install -g tabedata-mcp
```
Or run on demand with `npx -y tabedata-mcp`.
## Configuration
No API keys needed. Curated database ships with the package.
| Variable | Required | Description |
|---|---|---|
| `MCP_TRANSPORT` | no | `stdio` (default) or `http`. |
| `MCP_AUTH_TOKEN` | http only | Bearer token. HTTP transport refuses to start without it. |
| `MCP_HTTP_PORT` | no | Default `8787`. |
| `MCP_HTTP_HOST` | no | Default `127.0.0.1`. |
| `MCP_HTTP_ALLOWED_ORIGINS` | no | Comma-separated CORS allowlist for HTTP transport. |
### Claude Desktop
Edit `claude_desktop_config.json`:
```json
{
"mcpServers": {
"tabedata": {
"command": "npx",
"args": ["-y", "tabedata-mcp"]
}
}
}
```
### Claude Code
```bash
claude mcp add tabedata -- npx -y tabedata-mcp
```
### Cursor / Windsurf
Add to `~/.cursor/mcp.json` with the same shape as Claude Desktop.
## Tools
| Tool | Description |
|---|---|
| `search_food` | Bilingual fuzzy search across the dataset. Accepts JP or EN queries (e.g. `salad chicken` or `サラダチキン`). |
| `konbini_item` | Chain-scoped lookup for 7-Eleven, Lawson, FamilyMart, Ministop. Includes allergens and ingredient lists where available. |
| `restaurant_meal` | Chain meal lookup with size variants (並 / 大盛 / 特盛) and allergen tags. |
| `analyze_meal` | Natural-language meal analyzer. Recognizes counts, weights (`200g rice`), fractions (`half avocado`), and restaurant size names (`Nakau large oyakodon`). Returns macro totals plus optional comparison to personalized targets. |
| `find_alternatives` | Swap an item for a better one along a chosen axis (higher protein, lower calorie, lower sodium). Returns each alternative with its improvement and tradeoff. |
| `daily_targets` | Mifflin-St Jeor BMR x activity multiplier x goal-driven deficit/surplus. Diabetes risk shifts the macro split. Hypertension surfaces a sodium guidance note. |
## Prompts
| Prompt | What it does |
|---|---|
| `plan_my_day` | Given a goal (e.g. "cut to 70kg, hit 150g protein"), chains `daily_targets` → meal proposal → `analyze_meal` → `find_alternatives` into one guided workflow. |
## Coverage
### Konbini (122 items)
| Chain | Items |
|---|---|
| 7-Eleven | 46 |
| Lawson | 34 |
| FamilyMart | 29 |
| Ministop | 13 |
### Restaurant chains (272 items)
Japanese chains: Nakau, Sukiya, Yoshinoya, Matsuya, CoCo Ichibanya, Marugame Seimen, Tenya, MOS Burger, Yayoiken, Ootoya, Ichiran.
Western and global chains: McDonald's Japan, KFC Japan, Subway Japan, Lotteria, Freshness Burger, Doutor.
### Generic, drink, and brand items (66 items)
- 42 items from Japan's MEXT *Standard Tables of Food Composition* (文部科学省 食品成分表) — 36 generic staples (rice, egg, natto, tofu…) and 6 basic drinks (milk, tea, coffee). MEXT is the canonical reference used in Japanese nutrition research and clinical practice.
- 24 brand products: Oikos, SAVAS Milk Protein line, Meiji R-1 / Bulgaria / LG21 / TANPACT, Glico, Calbee, Ito En, Asahi, Kirin, Suntory, Fuji Pan, Snow Brand, Morinaga inZeri.
## Example queries
```
How many calories are in a Big Mac in Japan?
日本のビッグマックは何キロカロリー?
I just had a Sukiya gyudon. Track it.
今日すき家の牛丼食べた。記録して
Compare a 7-Eleven salmon onigiri to a Lawson one
セブンとローソンの鮭おにぎり、どっちがいい?
Analyze my lunch: 1 oikos plain, 2 boiled eggs, 200g rice
ランチ記録して: オイコス1個、ゆで卵2個、白米200g
What sizes does Sukiya's gyudon come in?
すき家の牛丼のサイズ展開は?
Calculate daily targets: 80kg, 175cm, 30, male, moderate, cutting
```
## Data provenance
This dataset is **AI-compiled**: each value was gathered by an AI assistant (Claude) reading the cited source, then schema-checked by script. It is **not individually fact-checked by a human.** Treat every number as a best-effort reference and confirm against the item's `source.url` before relying on it.
Each item carries:
1. **A cited source** — an official manufacturer or restaurant nutrition label, an official PDF, an entry from Japan's MEXT *Standard Tables of Food Composition*, or a flagged estimate (`source.type: "estimated"`) where official figures weren't available.
2. **Bilingual names** — `name_en` and `name_jp` are mandatory.
3. **Provenance fields** — `source.url`, `source.type`, `compiled_at` (ISO date), `compiled_by`, and a `confidence` level.
Run `npm run verify-data` to validate structure: required fields, id uniqueness, and that each `source.url` still resolves. This confirms links are live and records are well-formed — it does **not** verify the correctness of the nutrition numbers. Items older than 365 days are flagged stale.
See [DATA_SOURCES.md](DATA_SOURCES.md) for the full compilation methodology.
## Disclaimer
This is an unofficial, community-built MCP server. Not affiliated with, endorsed by, or sponsored by any of the listed restaurants, konbini chains, or product manufacturers; their names and trademarks belong to their respective owners. **Nutrition values were AI-compiled by an assistant reading publicly published sources (manufacturer, restaurant, and MEXT government pages) and were not individually verified by a human.** Published figures change and AI compilation can introduce errors, so treat every value as a reference, not a guarantee, and confirm against the official source before acting on it. The author accepts no liability for decisions made on the basis of this data.
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md). Pull requests for new items welcome — include `source.url`, `source.type`, bilingual names, and a `confidence` level for each.
## License
[MIT](LICENSE)
What people ask about tabedata-mcp
What is mrslbt/tabedata-mcp?
+
mrslbt/tabedata-mcp is mcp servers for the Claude AI ecosystem. Japanese food nutrition for AI assistants. Bilingual JP/EN lookups across konbini, restaurants, and grocery brands. Macros, allergens, sodium. 460 cited items, all sourced from official labels or Japan's MEXT food composition database. It has 1 GitHub stars and was last updated yesterday.
How do I install tabedata-mcp?
+
You can install tabedata-mcp by cloning the repository (https://github.com/mrslbt/tabedata-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is mrslbt/tabedata-mcp safe to use?
+
Our security agent has analyzed mrslbt/tabedata-mcp and assigned a Trust Score of 79/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains mrslbt/tabedata-mcp?
+
mrslbt/tabedata-mcp is maintained by mrslbt. The last recorded GitHub activity is from yesterday, with 0 open issues.
Are there alternatives to tabedata-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy tabedata-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/mrslbt-tabedata-mcp)<a href="https://claudewave.com/repo/mrslbt-tabedata-mcp"><img src="https://claudewave.com/api/badge/mrslbt-tabedata-mcp" alt="Featured on ClaudeWave: mrslbt/tabedata-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!