Skip to content
VS Code

entyrix mcp for VS Code

io.github.juliusgerman/entyrix-mcp

KYB data from 23 European business registries — search, financials, compliance, network graphs

client:VS Code transport:stdio runtime:npm

Install entyrix mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "entyrix-api-key",
      "description": "ENTYRIX_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "entyrix-base-url",
      "description": "ENTYRIX_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "entyrix-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@entyrix/mcp"
      ],
      "env": {
        "ENTYRIX_API_KEY": "${input:entyrix-api-key}",
        "ENTYRIX_BASE_URL": "${input:entyrix-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

entyrix mcp in other clients