Server data from the Official MCP Registry
30 tools for Japanese data: address, furigana, transit, Diet, holidays, weather, corporate registry
30 tools for Japanese data: address, furigana, transit, Diet, holidays, weather, corporate registry
This is a well-structured MCP server that securely interfaces with Japanese data APIs using the x402 payment protocol. Authentication is properly delegated to x402, wallet credentials are correctly stored in environment variables with appropriate validation, and there are no malicious patterns or dangerous operations. Minor code quality issues around broad exception handling and informational findings do not materially impact security. Supply chain analysis found 7 known vulnerabilities in dependencies (2 critical, 5 high severity). Package verification found 1 issue.
7 files analyzed · 12 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: EVM_PRIVATE_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-mameta29-japan-data-mcp": {
"env": {
"EVM_PRIVATE_KEY": "your-evm-private-key-here"
},
"args": [
"-y",
"@mameta/japan-data-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
npm:
@mameta/japan-data-mcp· MCP Registry:io.github.Mameta29/japan-data-mcp· transport: stdio
An MCP server that gives AI agents (Claude Desktop, Cursor, Cline, …) one-call access to the agentic-jp.com suite of Japanese data APIs. Every call is settled per-use over the x402 payment protocol — no account, no subscription, no API key.
| API | Tools | What it does |
|---|---|---|
| address | address_normalize, address_geocode, address_reverse_geocode, address_postal_code, address_parse | Japanese address normalization, geocoding, postal-code lookup, free-form parsing |
| furigana | furigana_convert, furigana_name_readings, furigana_classify | Reading conversion, name readings, text classification |
| transit | transit_station_status, transit_line_disruptions, transit_route_plan, transit_alternative_routes, transit_lines, transit_stations_search | Real-time rail delays + delay-aware route planning (ODPT) |
| diet | diet_member, diet_members_search, diet_minutes_search, diet_minutes_summarize, diet_topic_track, | National Diet members, proceedings, AI summaries, votes |
| holiday | holiday_is_holiday, holiday_list, holiday_add_business_days, holiday_business_days_between | Public holidays + business-day math |
| weather | weather_forecast, weather_warnings, weather_areas | JMA forecasts and warnings |
| houjin | houjin_corporation, houjin_search, houjin_verify | Corporate-number (法人番号) registry — 5.78M corporations |
x402 is a buyer-pays protocol. This MCP server holds your wallet and pays each API call transparently — the agent never sees a payment prompt. Calls cost roughly $0.001–$0.10 each (mostly sub-cent), settled in USDC on Base.
EVM_PRIVATE_KEY to that wallet's key.Without EVM_PRIVATE_KEY the server still starts and lists every tool, but a
paid tool call returns a clear "payment not configured" message — nothing is
charged.
Security: the key in
EVM_PRIVATE_KEYcan spend that wallet's funds. Use a dedicated wallet funded with only what you intend to spend — never a primary wallet.
No install step — npx fetches and runs the server on demand.
Add to claude_desktop_config.json:
{
"mcpServers": {
"japan-data": {
"command": "npx",
"args": ["-y", "@mameta/japan-data-mcp"],
"env": {
"EVM_PRIVATE_KEY": "0xYOUR_FUNDED_WALLET_KEY"
}
}
}
}
Without EVM_PRIVATE_KEY the server still starts and lists all 30 tools;
the paid tools then return a clear "payments disabled" error instead of
running. Add a USDC-funded wallet key to enable them.
Point the MCP client at npx -y @mameta/japan-data-mcp with the same
EVM_PRIVATE_KEY env var. Transport is stdio.
git clone https://github.com/Mameta29/japan-data-mcp.git
cd japan-data-mcp
npm install && npm run build
# then point the MCP client at: node /abs/path/to/dist/index.js
Once connected, just ask the agent in natural language:
address_normalize + address_geocodeholiday_is_holiday + holiday_add_business_daystransit_line_disruptions + transit_alternative_routeshoujin_corporationdiet_minutes_search + diet_minutes_summarize| Env var | Required | Description |
|---|---|---|
EVM_PRIVATE_KEY | for paid tools | Private key of a USDC-funded wallet (Base / Polygon). Paid tools are disabled if absent. |
npm run dev # run from source with tsx
npm run typecheck # tsc --noEmit
npm run build # compile to dist/
Apache-2.0
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.