Skip to content
VS Code

looply for VS Code

io.github.xie38388/looply

Looply AI call center MCP Server - manage calls, leads, contacts, and analytics.

client:VS Code transport:stdio runtime:npm

Install looply in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "looply-api-key",
      "description": "LOOPLY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "looply-base-url",
      "description": "LOOPLY_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "database-url",
      "description": "DATABASE_URL",
      "password": true
    }
  ],
  "servers": {
    "looply": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "looply-mcp-server"
      ],
      "env": {
        "LOOPLY_API_KEY": "${input:looply-api-key}",
        "LOOPLY_BASE_URL": "${input:looply-base-url}",
        "DATABASE_URL": "${input:database-url}"
      }
    }
  }
}

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

looply in other clients