Proofpoint Essentials for VS Code
io.github.wyre-ai/proofpoint-essentials-mcp
MCP server for Proofpoint Essentials -- MSP org, domain, user, licensing, and reporting management.
client:VS Code
transport:stdio
runtime:oci
Install Proofpoint Essentials in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "proofpoint-essentials-username",
"description": "PROOFPOINT_ESSENTIALS_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "proofpoint-essentials-password",
"description": "PROOFPOINT_ESSENTIALS_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "proofpoint-essentials-region",
"description": "PROOFPOINT_ESSENTIALS_REGION",
"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-essentials-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/proofpoint-essentials-mcp:v1.0.0"
],
"env": {
"PROOFPOINT_ESSENTIALS_USERNAME": "${input:proofpoint-essentials-username}",
"PROOFPOINT_ESSENTIALS_PASSWORD": "${input:proofpoint-essentials-password}",
"PROOFPOINT_ESSENTIALS_REGION": "${input:proofpoint-essentials-region}",
"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