Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Finance & Fintech
  3. Japan Corporate MCP
  4. README

Japan Corporate MCP README

The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Japan Corporate MCP listing page.

Back to Japan Corporate MCP View source on GitHub

japan-corporate-mcp

MCP Server for Japanese corporate data — search companies, financials, patents, subsidies, and government statistics via official government APIs.

日本企業データMCPサーバー — gBizINFO・EDINET・e-Statの政府APIから企業情報をAIが直接取得できます。

Features / 機能

ToolDescriptionデータソース
search_companySearch companies by namegBizINFO
get_company_infoCompany details (address, capital, employees)gBizINFO
get_company_financeFinancial data (revenue, profit, assets)gBizINFO
get_company_patentsPatent informationgBizINFO
get_company_subsidiesSubsidies and grants receivedgBizINFO
get_company_procurementGovernment procurement recordsgBizINFO
get_edinet_reportsSecurities reports (有価証券報告書)EDINET
get_statisticsGovernment statistics searche-Stat

Installation / インストール

Terminal
pip install japan-corporate-mcp

API Key Setup / APIキーの取得

You need API keys from the following government services:

APIRegistrationURL
gBizINFO (経産省)Web registration, instanthttps://info.gbiz.go.jp/hojin/api_registration
EDINET (金融庁)Web registration + MFAhttps://disclosure2dl.edinet-fsa.go.jp/guide/static/disclosure/WZEK0110.html
e-Stat (総務省)Web registration, instanthttps://www.e-stat.go.jp/api/

Configuration / 設定

Claude Desktop

Add to your claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "japan-corporate": {
      "command": "japan-corporate-mcp",
      "env": {
        "GBIZINFO_API_TOKEN": "your-gbizinfo-token",
        "EDINET_SUBSCRIPTION_KEY": "your-edinet-key",
        "ESTAT_APP_ID": "your-estat-app-id"
      }
    }
  }
}

Claude Code

Terminal
claude mcp add japan-corporate -- japan-corporate-mcp \
  -e GBIZINFO_API_TOKEN=your-token \
  -e EDINET_SUBSCRIPTION_KEY=your-key \
  -e ESTAT_APP_ID=your-app-id

Cursor

Add to .cursor/mcp.json:

config.json
{
  "mcpServers": {
    "japan-corporate": {
      "command": "japan-corporate-mcp",
      "env": {
        "GBIZINFO_API_TOKEN": "your-gbizinfo-token",
        "EDINET_SUBSCRIPTION_KEY": "your-edinet-key",
        "ESTAT_APP_ID": "your-estat-app-id"
      }
    }
  }
}

Usage Examples / 使用例

Once configured, you can ask your AI assistant:

  • "ソニーグループの企業情報を教えて" (Get Sony Group's company info)
  • "トヨタ自動車の特許情報を検索して" (Search Toyota's patents)
  • "東京都のAI関連企業を探して" (Find AI companies in Tokyo)
  • "日本の製造業に関する統計データを検索" (Search manufacturing statistics)
  • "最近のEDINET報告書でソフトバンクを検索" (Search SoftBank's EDINET filings)

Environment Variables / 環境変数

VariableRequiredDescription
GBIZINFO_API_TOKENYes*gBizINFO API token
EDINET_SUBSCRIPTION_KEYFor EDINET toolsEDINET subscription key
ESTAT_APP_IDFor e-Stat toolse-Stat application ID

* At minimum, GBIZINFO_API_TOKEN is needed for company search/info tools.

Development / 開発

bash
git clone https://github.com/drago/japan-corporate-mcp.git
cd japan-corporate-mcp
pip install -e ".[dev]"
pytest

License

MIT