Package Exports
- edition-mcp-server
- edition-mcp-server/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (edition-mcp-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
edition-mcp-server
MCP server for the EDITION Intelligence Platform — contextual intelligence infrastructure for AI agents operating in Japan.
What it does
Provides 8 tools that give AI agents the ability to:
- Remember conversations with Japanese-aware fact extraction (keigo analysis, social hierarchy detection, confidence scoring)
- Navigate Japanese business regulations across 10 industries + tourist rules
Install
npx edition-mcp-serverOr install globally:
npm install -g edition-mcp-server
edition-mcpConfigure
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"edition": {
"command": "npx",
"args": ["-y", "edition-mcp-server"],
"env": {
"EDITION_API_URL": "http://localhost:8000",
"EDITION_API_KEY": "your_api_key"
}
}
}
}Cursor
Add to MCP settings:
{
"edition": {
"command": "npx",
"args": ["-y", "edition-mcp-server"],
"env": {
"EDITION_API_URL": "http://localhost:8000",
"EDITION_API_KEY": "your_api_key"
}
}
}Tools
| Tool | Description |
|---|---|
memory_store |
Store episode + auto-extract structured facts from Japanese text |
memory_recall |
Semantic search across stored episodes |
memory_facts |
List structured facts (subject → predicate → object with confidence) |
memory_context |
Get context summary for an entity or session |
memory_extract |
Extract facts from text with keigo/hierarchy analysis |
regulation_check |
Check Japanese business regulations by industry |
regulation_industries |
List all 10 supported industries |
regulation_tourist |
Tourist regulation lookup (visa, tax-free, transit, etc.) |
Backend
This MCP server connects to the EDITION REST API backend. To run your own:
git clone https://github.com/hiroshic9-png/edition.git
cd edition
python3 -m venv venv && source venv/bin/activate
pip install -r requirements.txt
python -m uvicorn backend.api.main:app --reloadLicense
MIT