Nankai Trough MCP server
Nankai Trough earthquake hazard & building-safety, from official Japan data. No verdicts.
0 stars39 downloads/wk
Reviews
Write oneNobody has reviewed Nankai Trough yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Nankai Trough tools (6)
write = sends, deletes, buys or postsRead from the package source without running it. The installed server may list more.
building_seismic_checkClassify a building's seismic standard (旧耐震 / 新耐震 / 2000 wooden standard) from a build year and structure the USER provides, with risk context. This is NOT a safety verdict; direct the user to a professional 耐震診断 via taishin_subsidy_guide.
geocode_addressConvert a Japanese address to coordinates (lat/lon) and parse the prefecture/municipality, via the official GSI geocoder. Utility used by official_hazard_maps; call it directly when you only need coordinates.
nankai_overviewGet the headline facts of the official 2025 Nankai Trough estimate (probability, worst-case casualties/loss, intensity-7 reach, tsunami) with sources. Start here to understand the scale; then call official_hazard_maps for a specific address.
official_hazard_mapsGeocode a Japanese address and return links to the OFFICIAL government hazard maps that hold the exact per-address values (predicted intensity, tsunami inundation, your municipal map). This server does not compute those itself; it bridges you to the authoritative source.
shindo_meaningExplain what a JMA seismic intensity level (5弱–7) actually means for people and buildings, using the official 気象庁 scale. The Nankai scenario projects up to intensity 7 across 10 prefectures.
taishin_subsidy_guideRoute the user to subsidised/often-free seismic diagnosis (耐震診断) and retrofit (耐震補強) programs via the national directory, and explain the support framework. Amounts vary by municipality, so this routes and explains; it never quotes a figure.
Public scan report
scanner v0.1.9 · 2026-09-24 · same rubric, same numbers if you re-run it
- Code scan13 source files scanned25/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitylocal package, no credentials required12/15
- Maintenancelast push 101 days ago8/15
- Maintainer identityregistry namespace matches repository owner; GitHub account older than a year8/10
What the publisher says
From the Nankai Trough repository's README, as published. We do not edit it. Read it on GitHub
nankai-trough-mcp
Nankai Trough (南海トラフ地震) earthquake hazard and building-safety engine for AI assistants. Ask "how bad is the Nankai Trough quake, how far does it reach, and what does that mean for a house built in 1978?" and get official Japanese government figures, every one cited and dated, with a route to the official maps for your exact address. It never tells you you're "safe."
It reports what 内閣府 (Cabinet Office), 地震本部, 気象庁, and 国土交通省 actually publish, and where a figure isn't verifiable, it points you at the source instead of inventing one. Bilingual EN/JA. Runs locally, no API keys.
Live companion map: https://nankaitrough.bymarsel.me (this is the open data engine behind it, the same official data as an explorable map).
⚠️ Not a prediction, not a verdict. This explains official data and routes you to official guidance and a professional seismic diagnosis (耐震診断). Always confirm with your municipality and official hazard maps. In an emergency, follow official evacuation instructions.
Why it exists
Most people underestimate the reach. The 30-year probability was revised by 地震本部 in September 2025 away from the old single "80%" to a two-model range (60–90%+ (higher model) / 20–50%). Intensity-7 shaking is projected across 10 prefectures, and 764 municipalities in 31 prefectures face major shaking or a 3 m+ tsunami. "I'm inland, so I'm fine" is exactly the assumption this corrects.
The authoritative data is real, but it's scattered across five agencies and mostly buried in PDFs. This server makes it cited and usable from an AI assistant, without ever inventing a number.
Data rules
- No verdicts. It reports official figures + plain-language meaning, never "your home is safe/unsafe."
- Every figure cites its official source + date. If a value isn't verifiable in a primary source, it points to the source instead of guessing.
- Probabilistic ≠ scenario. J-SHIS (all-source probability) is never presented as the Nankai scenario (Cabinet Office).
- Building safety can't be looked up. It's classified from the build year + structure you provide. No fabricated per-building data.
Install
claude mcp add nankai -- npx -y nankai-trough-mcpJSON config
The server config is the same across clients; only the file path differs.
Claude Code: ~/.claude/.mcp.json
{
"mcpServers": {
"nankai": { "command": "npx", "args": ["-y", "nankai-trough-mcp"] }
}
}Cursor: ~/.cursor/mcp.json
{
"mcpServers": {
"nankai": { "command": "npx", "args": ["-y", "nankai-trough-mcp"] }
}
}VS Code (GitHub Copilot): .vscode/mcp.json
{
"servers": {
"nankai": { "type": "stdio", "command": "npx", "args": ["-y", "nankai-trough-mcp"] }
}
}Claude Desktop: claudedesktopconfig.json
{
"mcpServers": {
"nankai": { "command": "npx", "args": ["-y", "nankai-trough-mcp"] }
}
}Config path:
- macOS: ~/Library/Application Support/Claude/claudedesktopconfig.json
- Windows: %APPDATA%\Claude\claudedesktopconfig.json
From source
git clone https://github.com/mrslbt/nankai-trough-mcp.git
cd nankai-trough-mcp
npm install && npm run buildPoint the client config at the built entry:
{ "command": "node", "args": ["/absolute/path/to/nankai-trough-mcp/dist/index.js"] }Tools
Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
Runs npx -y nankai-trough-mcp on your machine. Read the scan report first; the gateway never runs local packages.
claude mcp add nankai-trough -- npx -y nankai-trough-mcp
Nankai Trough: common questions
- Is Nankai Trough MCP server safe?
- Mostly: it is graded B (82/100). Read the Nankai Trough safety report
- How do I install Nankai Trough?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Nankai Trough need an API key?
- Not as far as the registry entry and our scan can tell: no credentials are declared or required.
- Is Nankai Trough maintained?
- The last commit was 101 days ago (2026-06-15). The latest release is v0.1.1.