Skip to content
VS Code

botcall mcp for VS Code

io.github.danecodes/botcall-mcp

Give your AI agent a real phone number for SMS verification codes.

client:VS Code transport:stdio runtime:npm

Install botcall mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "botcall-api-key",
      "description": "BOTCALL_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "botcall-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "botcall-mcp"
      ],
      "env": {
        "BOTCALL_API_KEY": "${input:botcall-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

botcall mcp in other clients