Skip to content
VS Code

japan data mcp for VS Code

io.github.izyuusya/japan-data-mcp

日本の公的データ(統計・法人・不動産)にAIからアクセスするMCPサーバー。e-Stat統計API・法人番号Web-API・不動産情報ライブラリAPIの3API統合。全国約1,700市区町村対応。

client:VS Code transport:stdio runtime:pypi

Install japan data mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "estat-app-id",
      "description": "ESTAT_APP_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "corp-app-id",
      "description": "CORP_APP_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "realestate-api-key",
      "description": "REALESTATE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "japan-data-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "japan-data-mcp"
      ],
      "env": {
        "ESTAT_APP_ID": "${input:estat-app-id}",
        "CORP_APP_ID": "${input:corp-app-id}",
        "REALESTATE_API_KEY": "${input:realestate-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

japan data mcp in other clients