Skip to content
VS Code

clawcall for VS Code

io.github.clawcall-dev/clawcall

MCP server for ClawCall — AI-powered US phone calling.

client:VS Code transport:stdio runtime:npm

Install clawcall in VS Code

.vscode/mcp.json

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

clawcall in other clients