Edition Intelligence Platform
EDITION Intelligence Platform
Japan Operations OS for autonomous AI agents.
14 knowledge domains · 31 MCP tools · 55+ REST endpoints · 2 prompts · 2 resources Verified ground truth for operating in the Japanese market.
Production API: api.edition.sh — Free beta, no registration required.
Why EDITION?
AI agents working in Japan hit walls that generic LLMs can't solve:
Challenge | What goes wrong |
Keigo (敬語) | 「お持ちすれば喜ばれるかと存じます」 — hidden subject, layered honorifics, uncertainty expression. Generic NLP treats this as noise. |
Implicit agreements | Japanese business communication rarely states things directly. Agents need cultural decoding. |
Regulatory maze | 10+ industries with overlapping national/prefectural regulations, most documentation only in Japanese. |
Procedural complexity | Company incorporation, visa, banking — each requires 5-8 steps with specific documents, deadlines, and costs. |
EDITION provides verified, structured intelligence that agents can use as ground truth instead of hallucinating cultural nuances, legal requirements, and procedural details.
14 Knowledge Domains
# | Domain | Tools | What it covers |
1 | Memory |
| Three-layer persistent memory (Episode/Fact/Context) with Japanese keigo analysis and social hierarchy detection |
2 | Regulation |
| 10 industries (food, real estate, finance, healthcare, construction, education, transport, retail, IT, manufacturing) + tourist compliance |
3 | Protocol |
| Nemawashi, ringi, hourensou, meishi koukan, sekijun, zoutou — step-by-step procedures with cultural context |
4 | Calendar |
| Fiscal year (April start), Golden Week, Obon, year-end, gift seasons, administrative deadlines |
5 | Regional |
| Tokyo vs Osaka negotiation styles, local subsidies, prefectural regulations, dialect considerations |
6 | Organization |
| Keiretsu networks, corporate hierarchy (bucho/kacho), payment customs (net-60), contract practices |
7 | Foreign Entry |
| 6 categories: company incorporation (KK/GK), management visa, bank account, real estate, tax registration, employee hiring |
8 | Travel |
| Shinkansen, IC cards, ryokan etiquette, onsen rules, restaurant ordering, tipping customs |
9 | Entertainment |
| Oshi-katsu fan culture, anime pilgrimage, live event manners, seasonal festivals |
10 | Daily Life |
| Postal/address systems, garbage sorting by municipality, utilities (electricity/gas/water/NHK), healthcare navigation |
11 | Language |
| Keigo honorific system, counter words (josushi), name/address structure, business Japanese templates |
12 | Food Culture |
| Dining etiquette, cuisine classification, restaurant navigation (shokkenki, izakaya, sushi counter), dietary restrictions (halal, vegetarian, allergies) |
13 | Disaster & Safety |
| Earthquake shindo scale & EEW, typhoon warning levels, emergency contacts (110/119/118), preparedness checklists |
14 | Cross-Domain |
| Search all 14 domains simultaneously with a single query |
Quick Start
Option 1: npx (Recommended for Claude Desktop / Cursor)
npx -y edition-mcp-serverAdd to claude_desktop_config.json:
{
"mcpServers": {
"edition": {
"command": "npx",
"args": ["-y", "edition-mcp-server"],
"env": {
"EDITION_API_URL": "https://api.edition.sh",
"EDITION_API_KEY": "edition_dev_key_for_testing"
}
}
}
}Option 2: Smithery
npx -y smithery mcp add hiroshi-c9/editionOption 3: REST API (Direct)
# Cross-domain search
curl -X POST https://api.edition.sh/api/v1/search \
-H "Content-Type: application/json" \
-d '{"query": "How do I start a tech company in Tokyo?"}'
# Regulation check
curl -X POST https://api.edition.sh/api/v1/regulation/check \
-d '{"action": "open restaurant", "industry": "food_service"}'
# Business protocol
curl -X POST https://api.edition.sh/api/v1/protocol/check \
-d '{"query": "nemawashi consensus building"}'Memory API — Japanese-aware Persistent Memory
Store episodes, auto-extract structured facts with keigo analysis, social hierarchy detection, and confidence scoring.
Input: "佐藤部長にはワインをお持ちすれば喜ばれるかと存じます"
Output:
Subject: 佐藤 (役職: 部長)
Predicate: 好む
Object: ワイン
Keigo: Level 2 (尊敬語)
Hierarchy: superior
Confidence: 0.7 (推測 — not stated as fact)
Tense: presentThree-layer architecture:
Episodes — raw conversation logs
Facts — structured knowledge (subject→predicate→object triples)
Context — aggregated session summaries per entity/topic
MCP Capabilities
Category | Count | Details |
Tools | 31 | All with annotations ( |
Resources | 2 |
|
Prompts | 2 |
|
API Endpoints
Memory
Method | Endpoint | Description |
POST |
| Store episode ( |
POST |
| Semantic search across episodes |
GET |
| List structured facts |
GET |
| Session context summary |
POST |
| Extract facts from text ( |
Regulation & Compliance
Method | Endpoint | Description |
POST |
| Check regulations (10 industries + tourist) |
GET |
| List all regulated industries |
GET |
| Tourist regulation categories |
Business Intelligence
Method | Endpoint | Description |
POST |
| Search business protocols |
GET |
| List all protocols |
POST |
| Search business calendar |
GET |
| List calendar categories |
POST |
| Search regional differences |
GET |
| List regional categories |
POST |
| Search organizational structures |
GET |
| List organization categories |
Market Entry
Method | Endpoint | Description |
POST |
| Foreign market entry guides |
GET |
| List entry categories (6 total) |
Lifestyle & Culture
Method | Endpoint | Description |
POST |
| Travel intelligence |
POST |
| Entertainment & pop culture |
POST |
| Daily life knowledge |
POST |
| Japanese language |
POST |
| Food culture |
POST |
| Disaster & safety |
Cross-Domain
Method | Endpoint | Description |
POST |
| Search all 14 domains simultaneously |
Data Quality
All knowledge entries include:
source_url— Link to authoritative source (government websites, official organizations)last_verified— Date of last verificationconfidence— Verification status (verified/estimated)version— Entry version with changelog
Sources include: 厚生労働省 (MHLW), 国税庁 (NTA), 法務省 (MOJ), 国土交通省 (MLIT), 経済産業省 (METI), 日本経団連 (Keidanren), JETRO, 入管庁 (ISA).
Tech Stack
Layer | Technology |
API | FastAPI (Python) |
Memory Store | SQLite + ChromaDB (vector search) |
MCP Server | TypeScript (MCP SDK v1.12+) |
LLM | Gemini / Claude / GPT (fact extraction) |
Hosting | Render (api.edition.sh) |
Agent Discovery
Protocol | Endpoint |
MCP (Streamable HTTP) |
|
A2A Agent Card |
|
MCP Server Card |
|
OpenAPI / Swagger |
|
Registries
Why Not Mem0 / Letta / Zep?
Those are excellent general-purpose memory tools. But they don't:
Parse Japanese keigo levels (丁寧語 / 尊敬語 / 謙譲語)
Detect implicit social hierarchy from honorific patterns
Score confidence based on Japanese speech patterns (断定 vs 推測 vs 伝聞)
Include a Japanese regulatory database with 14 knowledge domains
Japanese business context is structurally different. Agents need purpose-built infrastructure to navigate it.
License
MIT
Maintenance
Latest Blog Posts
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/hiroshic9-png/edition-api'
If you have feedback or need assistance with the MCP directory API, please join our Discord server