Skip to content
VS Code

publicdata kr for VS Code

io.github.fieldcure/publicdata-kr

Korean public data API gateway for discovering and calling data.go.kr APIs from MCP clients.

client:VS Code transport:stdio runtime:nuget

Install publicdata kr in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "data-go-kr-api-key",
      "description": "DATA_GO_KR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "publicdata-timeout-seconds",
      "description": "PUBLICDATA_TIMEOUT_SECONDS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "publicdata-max-response-length",
      "description": "PUBLICDATA_MAX_RESPONSE_LENGTH",
      "password": true
    }
  ],
  "servers": {
    "publicdata-kr": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "FieldCure.Mcp.PublicData.Kr",
        "--yes"
      ],
      "env": {
        "DATA_GO_KR_API_KEY": "${input:data-go-kr-api-key}",
        "PUBLICDATA_TIMEOUT_SECONDS": "${input:publicdata-timeout-seconds}",
        "PUBLICDATA_MAX_RESPONSE_LENGTH": "${input:publicdata-max-response-length}"
      }
    }
  }
}

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

publicdata kr in other clients