Skip to content
VS Code

saperly for VS Code

io.github.idanbier999/saperly

Phone carrier for AI agents. Provision numbers, make calls, send SMS, TCPA compliance built-in.

client:VS Code transport:stdio runtime:npm

Install saperly in VS Code

.vscode/mcp.json

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

saperly in other clients