Skip to content
VS Code

eurodns mcp for VS Code

io.github.jigsawfr/eurodns-mcp

Model Context Protocol server for the EuroDNS User API — domains, DNS zones, subscriptions and SSL.

client:VS Code transport:stdio runtime:npm

Install eurodns mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "eurodns-app-id",
      "description": "EURODNS_APP_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "eurodns-api-key",
      "description": "EURODNS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "eurodns-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@jigsawfr/eurodns-mcp"
      ],
      "env": {
        "EURODNS_APP_ID": "${input:eurodns-app-id}",
        "EURODNS_API_KEY": "${input:eurodns-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

eurodns mcp in other clients