Back to Browse

Japan Data MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

30 tools for Japanese data: address, furigana, transit, Diet, holidays, weather, corporate registry

About

30 tools for Japanese data: address, furigana, transit, Diet, holidays, weather, corporate registry

Security Report

5.2
Moderate5.2Moderate Risk

This is a well-structured MCP server with appropriate authentication via EVM private key for a buyer-pays payment protocol. The code demonstrates strong security practices: no credential exfiltration, proper input validation via Zod, safe URL encoding, and graceful degradation when payment is not configured. Minor code quality observations around error handling specificity do not materially impact security given the server's straightforward purpose. Supply chain analysis found 7 known vulnerabilities in dependencies (2 critical, 5 high severity). Package verification found 1 issue.

7 files analyzed · 11 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Private key of a USDC-funded wallet used to pay per-call x402 fees. Optional: without it the server starts and lists all tools, but paid tool calls return a 'payments disabled' error.Required

Environment variable: EVM_PRIVATE_KEY

How to Install

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"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

japan-data-mcp

npm version license Japan Furigana API on x402-list

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.

What it covers — 28 tools across 7 APIs

APIToolsWhat it does
addressaddress_normalize, address_geocode, address_reverse_geocode, address_postal_code, address_parseJapanese address normalization, geocoding, postal-code lookup, free-form parsing
furiganafurigana_convert, furigana_name_readings, furigana_classifyReading conversion, name readings, text classification
transittransit_station_status, transit_line_disruptions, transit_route_plan, transit_alternative_routes, transit_lines, transit_stations_searchReal-time rail delays + delay-aware route planning (ODPT)
dietdiet_member, diet_members_search, diet_minutes_searchNational Diet members and full-text proceedings search
holidayholiday_is_holiday, holiday_list, holiday_add_business_days, holiday_business_days_betweenPublic holidays + business-day math
weatherweather_forecast, weather_warnings, weather_areasJMA forecasts and warnings
houjinhoujin_corporation, houjin_search, houjin_verify, houjin_kyb_reportCorporate-number (法人番号) registry — 5.78M corporations, one-call KYB report

How payment works

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.

  • You fund a wallet with a small amount of USDC.
  • You set EVM_PRIVATE_KEY to that wallet's key.
  • The server pays as it goes; per-call cost is well under a cent for most tools.

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_KEY can spend that wallet's funds. Use a dedicated wallet funded with only what you intend to spend — never a primary wallet.

Setup

No install step — npx fetches and runs the server on demand.

Claude Desktop

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 28 tools; the paid tools then return a clear "payments disabled" error instead of running. Add a USDC-funded wallet key to enable them.

Cursor / Cline

Point the MCP client at npx -y @mameta/japan-data-mcp with the same EVM_PRIVATE_KEY env var. Transport is stdio.

From source

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

Example prompts

Once connected, just ask the agent in natural language:

  • "「東京都千代田区丸の内1-1」を正規化して緯度経度も出して" — address_normalize + address_geocode
  • "Is tomorrow a public holiday in Japan? If so, when is the next business day?" — holiday_is_holiday + holiday_add_business_days
  • "山手線いま遅れてる?渋谷から東京駅までの代替ルートは?" — transit_line_disruptions + transit_alternative_routes
  • "Look up the corporation with corporate number 7010401056220" — houjin_corporation
  • "国会で「デジタル庁」がいつどの委員会で議論されたか調べて" — diet_minutes_search

Configuration

Env varRequiredDescription
EVM_PRIVATE_KEYfor paid toolsPrivate key of a USDC-funded wallet (Base / Polygon). Paid tools are disabled if absent.

Development

npm run dev        # run from source with tsx
npm run typecheck  # tsc --noEmit
npm run build      # compile to dist/

License

Apache-2.0

Reviews

No reviews yet

Be the first to review this server!