Edition Intelligence Platform
The Edition Intelligence Platform provides AI agents with structured, verified knowledge of Japanese business, culture, and regulations through 43 tools across 20 domains.
Memory & Knowledge Management
Store and recall conversational episodes with Japanese-aware keigo analysis, social hierarchy detection, and confidence scoring
Extract structured subject→predicate→object facts from Japanese text
Retrieve aggregated session context to inject into agent prompts
Regulation & Compliance
Check regulatory requirements across 10 industries (food, real estate, finance, healthcare, construction, education, transport, retail, IT, manufacturing)
Access tourist compliance info (visa, tax-free shopping, transport, manners)
Log compliance events and generate audit reports (AI Act readiness)
Business Intelligence
Look up business protocols: nemawashi, ringi, hourensou, meishi exchange, seating order
Access the Japanese business calendar: fiscal year cycles, Golden Week, Obon, gift seasons, administrative deadlines
Explore regional business differences (e.g., Tokyo vs. Osaka negotiation styles, local subsidies)
Understand organizational structures: keiretsu networks, corporate hierarchy, payment customs (net-60), contract practices
Foreign Market Entry
Step-by-step guidance for company incorporation (KK/GK), management visas, bank account setup, real estate, tax registration, and hiring employees
Travel, Lifestyle & Culture
Travel: shinkansen, IC cards, ryokan/onsen etiquette, tipping customs
Entertainment: oshi-katsu fan culture, anime pilgrimages, seasonal festivals
Daily life: garbage sorting, postal/address systems, utilities, healthcare navigation
Language: keigo honorific systems, counter words, business Japanese templates
Food: dining etiquette, restaurant systems, dietary restrictions (halal, vegetarian, allergies)
Safety & Disaster Preparedness
Earthquake shindo scale, EEW alerts, typhoon warning levels, emergency contacts, and disaster checklists
Cross-Domain Search
A single query searches all 20 domains simultaneously for comprehensive answers
Access Tiers: Free tier covers 8 core domains (100 req/day); Pro ($2,980/mo) unlocks all 20 domains with full data quality guarantees (authoritative sources, verification dates, confidence scores, versioning).
EDITION Intelligence Platform
Japan Knowledge Gateway for autonomous AI agents.
20 knowledge domains · 43 MCP tools · 7 Skills Packs · 100+ REST endpoints Verified ground truth for operating in the Japanese market. Quality score: 97.8/100.
Production API: api.edition.sh — Free beta, no registration required.
Interactive Demo: Tourist Agent Demo — Watch 6 domains work together in real-time.
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.
Related MCP server: japan-ux-mcp
20 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 | Healthcare |
| National health insurance, hospital navigation, prescription system, medical Japanese terminology |
15 | Education |
| School system (6-3-3-4), entrance exams, international schools, university admission for foreigners |
16 | Real Estate |
| Rental process (shikikin/reikin/hoshoukin), property types, foreigner-friendly agencies, contract terms |
17 | Tax |
| Income tax, consumption tax, withholding, year-end adjustment, tax filing for foreigners and businesses |
18 | Banking & Finance |
| Bank account types, remittance, fintech services, corporate banking, payment systems |
19 | Visa & Immigration |
| Visa categories, status of residence, renewal procedures, permanent residency, naturalization |
20 | Cross-Domain |
| Search all 20 domains simultaneously with a single query |
Skills Packs (MCP Skills Primitive)
Pre-built knowledge packs that bundle domain expertise, SOPs, and tool orchestration instructions. Skills-aware agents can load these to gain structured Japan operational knowledge.
Skill Pack | Domains | Use Case |
regulation, foreign_entry, organization | Company incorporation, visa, banking | |
protocol, calendar, regional, language | Meetings, nemawashi, business Japanese | |
travel, food, entertainment, disaster | Tourist assistance, dining, safety | |
daily_life, food, language | Utilities, garbage, healthcare | |
protocol, organization, language | Implicit communication, hierarchy | |
disaster, regulation | Earthquake response, regulatory compliance | |
regulation, governance | Audit trails, compliance reporting, AI Act readiness |
→ Full Skills Pack documentation
Governance Intelligence
EDITION includes built-in compliance audit trail tools for agents operating under governance requirements. Available in both Progressive Discovery and Legacy modes.
regulation_check → compliance_log → compliance_report
↓ ↓ ↓
Check rules Record audit Generate reportTool | Purpose |
| Create immutable, timestamped audit record after any regulatory check |
| Generate governance reports (summary / detailed / JSON) from audit trail |
Designed for EU AI Act (Aug 2026) and upcoming Japan AI governance compliance.
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 | 43 | 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 |
POST |
| Healthcare system |
POST |
| Education system |
POST |
| Real estate |
POST |
| Tax system |
POST |
| Banking & finance |
POST |
| Visa & immigration |
Cross-Domain
Method | Endpoint | Description |
POST |
| Search all 20 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 |
|
Agent Harness Compatible
EDITION is designed as a Tool Registry / Japan Knowledge Layer for agent harnesses. All 43 tools include MCP annotations (readOnlyHint, destructiveHint, idempotentHint), usage guidelines, and behavioral transparency metadata — enabling harness frameworks to auto-discover, evaluate, and integrate EDITION tools without manual configuration.
Freemium Access
Tier | Domains | Rate Limit | Price |
Free | 8 core domains | 100 req/day | Free |
Pro | All 20 domains (incl. tax, banking, healthcare, visa) | 10,000 req/day | ¥2,980/mo |
Enterprise | All domains + priority support | Unlimited | Contact |
Anonymous access defaults to Free tier. Register for an API key at POST /api/v1/auth/register.
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 20 knowledge domains
Japanese business context is structurally different. Agents need purpose-built infrastructure to navigate it.
License
MIT
Maintenance
Related MCP Servers
- Alicense-qualityDmaintenanceJapanese calendar API for AI agents. Provides Rokuyo, Rekichu, Eto, 24 Solar Terms, and fortune judgments. MCP + REST API.Last updated5MIT
- AlicenseAqualityBmaintenanceProvides Japanese UX conventions as an MCP server to help AI generate correct Japanese UI elements like proper name order, furigana, phone formats, and polite language. It includes tools for form generation, validation, keigo suggestions, and cultural adaptation for developers building Japanese-facing products.Last updated697MIT
- AlicenseAqualityCmaintenanceJapan-specific utilities for AI agents — era ↔ Western year conversion, kanji-to-romaji, postal code lookup, national holidays, kana conversion, and Japanese name splitting. 9 tools, MIT licensed, install via uvx.Last updated9MIT
- Alicense-qualityBmaintenanceTorify gives AI agents the Japanese locale primitives that standard libraries lack — imperial era date conversion (wareki), qualified invoice number validation with NTA registry lookup, corporate number lookup (法人番号), postal code resolution, name romanization (Hepburn), and kanji-to-kana conversion via Yahoo! JLP. 31 endpoints total. No authentication required for MCP. Pay-per-call $0.02/call viaLast updatedMIT
Related MCP Connectors
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
Singapore property & financial data APIs for AI agents. 27 MCP tools. x402 micropayments.
Real-time Amazon, WIPO & PACER data for AI agents — 19 tools via the MCP protocol.
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/hiroshic9-png/edition-api'
If you have feedback or need assistance with the MCP directory API, please join our Discord server