Skip to content
VS Code

Proofpoint for VS Code

io.github.wyre-ai/proofpoint-mcp

MCP server for Proofpoint TAP — threat intelligence, forensics, quarantine, and email security.

client:VS Code transport:stdio runtime:oci

Install Proofpoint in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "proofpoint-service-principal",
      "description": "PROOFPOINT_SERVICE_PRINCIPAL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proofpoint-service-secret",
      "description": "PROOFPOINT_SERVICE_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proofpoint-base-url",
      "description": "PROOFPOINT_BASE_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": {
    "proofpoint-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/proofpoint-mcp:v1.1.5"
      ],
      "env": {
        "PROOFPOINT_SERVICE_PRINCIPAL": "${input:proofpoint-service-principal}",
        "PROOFPOINT_SERVICE_SECRET": "${input:proofpoint-service-secret}",
        "PROOFPOINT_BASE_URL": "${input:proofpoint-base-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

Proofpoint in other clients