Skip to content
VS Code

ictcontact mcp for VS Code

io.github.ictinnovations/ictcontact-mcp

Monitor ICTContact / ICTDialer outbound campaigns, and start and stop them when writes are on.

client:VS Code transport:stdio runtime:npm

Install ictcontact mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ictcontact-base-url",
      "description": "ICTCONTACT_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictcontact-username",
      "description": "ICTCONTACT_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictcontact-password",
      "description": "ICTCONTACT_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictcontact-mcp-allow-write",
      "description": "ICTCONTACT_MCP_ALLOW_WRITE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictcontact-timeout-ms",
      "description": "ICTCONTACT_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ictcontact-tls-insecure",
      "description": "ICTCONTACT_TLS_INSECURE",
      "password": true
    }
  ],
  "servers": {
    "ictcontact-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ictcontact-mcp"
      ],
      "env": {
        "ICTCONTACT_BASE_URL": "${input:ictcontact-base-url}",
        "ICTCONTACT_USERNAME": "${input:ictcontact-username}",
        "ICTCONTACT_PASSWORD": "${input:ictcontact-password}",
        "ICTCONTACT_MCP_ALLOW_WRITE": "${input:ictcontact-mcp-allow-write}",
        "ICTCONTACT_TIMEOUT_MS": "${input:ictcontact-timeout-ms}",
        "ICTCONTACT_TLS_INSECURE": "${input:ictcontact-tls-insecure}"
      }
    }
  }
}

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

ictcontact mcp in other clients