Japan Food DB
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., "@Japan Food DBWhat's the nutrition per 100g for miso soup?"
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.
⛩️ Torii Gate
Japanese data tools for AI agents.
Japan has a wealth of clean, public, factual data — food composition tables, corporate registries, laws, land prices. Almost none of it is usable by AI agents: no clean APIs, Japanese-only interfaces, Excel files behind web forms. Meanwhile, agents worldwide get asked to do Japanese tasks every day.
Torii Gate is the gateway: each dataset becomes a remote MCP server that any agent can discover, connect to, and call.
Tools
Tool | Description | Endpoint |
Japan Food DB | Resolve Japanese food names (fuzzy/colloquial forms included) to nutrition facts per 100g, based on the official Standard Tables of Food Composition in Japan. Covers foods USDA and Open Food Facts don't. |
|
More tools are on the way — corporate registry lookup, invoice registration checks, subsidy search. The platform is manifest-driven: adding a tool is one directory and one registry line.
Related MCP server: Food Data Central MCP Server
Connect from an MCP client
Add the remote server to your client (Claude Code example):
claude mcp add --transport http japan-food-db https://toriigate.dev/mcp/food-dbThen ask things like "「セブンのサラダチキン」的な鶏むね肉のカロリーは?" — the agent calls search_food / get_nutrition and gets factual data with sources attached.
No API key is needed for the free tier (rate-limited).
Run it yourself
npm install
npm run dev # local dev server on :8787
npm run typecheckSmoke test:
curl http://localhost:8787/llms.txt
curl -X POST http://localhost:8787/mcp/food-db \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_food","arguments":{"query":"ごはん"}}}'Architecture
Cloudflare Workers + Hono + MCP SDK (Streamable HTTP, stateless)
Manifest-driven: each tool lives in
src/tools/<name>/and declares its MCP tools, pricing, and data sources in a manifest.llms.txtand MCP Registryserver.jsonrecords are generated from manifests — never hand-written.Funnel metering built in: discovery → connect → call events are recorded for every tool.
Budget-guarded by design: runs on the Workers free plan, whose hard request cap fails closed instead of billing.
Data principles
Records hold facts only — names, numbers, source URL, retrieval date. No copyrighted text or images.
Public/government data forms the base layer; every record carries its source and license.
Every response includes a disclaimer: reference values only, never for medical, allergy, or other critical decisions.
Takedown requests are honored immediately.
Full datasets are imported at deploy time and are not part of this repository.
The experiment
This platform is built and operated almost entirely by AI agents — planning, code, registry publishing, monitoring, and weekly funnel reports — with a human in the loop only for publish/kill approvals and a budget review. It is an open experiment in whether an AI-operated business unit can find real agent-to-agent demand. Funnel numbers and decisions will be published as we go.
License
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.
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/yuki00yossi/toriigate-platform'
If you have feedback or need assistance with the MCP directory API, please join our Discord server