Skip to content
VS Code

esim mcp for VS Code

io.github.kakha13/esim-mcp

Compare travel eSIM plans by country, and regional vs local pricing for multi-country trips.

client:VS Code transport:stdio runtime:npm

Install esim mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cheaperesim-api-token",
      "description": "CHEAPERESIM_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cheaperesim-api-base",
      "description": "CHEAPERESIM_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cheaperesim-timeout-ms",
      "description": "CHEAPERESIM_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "esim-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "esim-mcp"
      ],
      "env": {
        "CHEAPERESIM_API_TOKEN": "${input:cheaperesim-api-token}",
        "CHEAPERESIM_API_BASE": "${input:cheaperesim-api-base}",
        "CHEAPERESIM_TIMEOUT_MS": "${input:cheaperesim-timeout-ms}"
      }
    }
  }
}

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

esim mcp in other clients