Skip to content
VS Code

Avanan for VS Code

io.github.wyre-ai/avanan-mcp

MCP server for Check Point Harmony Email & Collaboration (Avanan) email security.

client:VS Code transport:stdio runtime:oci

Install Avanan in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "avanan-client-id",
      "description": "AVANAN_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "avanan-client-secret",
      "description": "AVANAN_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "avanan-api-url",
      "description": "AVANAN_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "avanan-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/avanan-mcp:v2.2.3"
      ],
      "env": {
        "AVANAN_CLIENT_ID": "${input:avanan-client-id}",
        "AVANAN_CLIENT_SECRET": "${input:avanan-client-secret}",
        "AVANAN_API_URL": "${input:avanan-api-url}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

Avanan in other clients