Skip to content
VS Code

Agentline for VS Code

io.github.jgottlieb84/agentline-mcp

Phone numbers, SMS, 2FA capture, voice calls, and email for AI agents.

client:VS Code transport:stdio runtime:pypi

Install Agentline in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agentline-api-key",
      "description": "AGENTLINE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agentline-base-url",
      "description": "AGENTLINE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "agentline-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "agentline-mcp"
      ],
      "env": {
        "AGENTLINE_API_KEY": "${input:agentline-api-key}",
        "AGENTLINE_BASE_URL": "${input:agentline-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

Agentline in other clients