Skip to content
VS Code

poldex for VS Code

io.github.lordolami/poldex

MCP server exposing PolDex commercial insurance extraction tools to AI agents.

client:VS Code transport:stdio runtime:npm

Install poldex in VS Code

.vscode/mcp.json

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

poldex in other clients