Skip to content
VS Code

calltouch mcp for VS Code

io.github.theyahia/calltouch-mcp

MCP server for Calltouch API — call tracking, call statistics. Token auth.

client:VS Code transport:stdio runtime:npm

Install calltouch mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "calltouch-token",
      "description": "CALLTOUCH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "calltouch-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@theyahia/calltouch-mcp"
      ],
      "env": {
        "CALLTOUCH_TOKEN": "${input:calltouch-token}"
      }
    }
  }
}

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

calltouch mcp in other clients