Skip to content
VS Code

ARES (Czech business registry) for VS Code

io.github.milos106/ares-mcp

MCP for ARES, the Czech business registry: lookup, due diligence, insolvency, signed provenance

client:VS Code transport:stdio runtime:npm

Install ARES (Czech business registry) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ares-provenance-private-key",
      "description": "ARES_PROVENANCE_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ares-provenance-key-id",
      "description": "ARES_PROVENANCE_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ares-base-url",
      "description": "ARES_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "ares-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@milos106/ares-mcp"
      ],
      "env": {
        "ARES_PROVENANCE_PRIVATE_KEY": "${input:ares-provenance-private-key}",
        "ARES_PROVENANCE_KEY_ID": "${input:ares-provenance-key-id}",
        "ARES_BASE_URL": "${input:ares-base-url}"
      }
    }
  }
}

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

ARES (Czech business registry) in other clients