WPGuard MCP for VS Code
io.github.cgallic/wpguard-mcp
WordPress edit previews, scoped correction checks, and change records for trusted operators.
client:VS Code
transport:stdio
runtime:oci
Install WPGuard MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wpguard-mcp-token",
"description": "WPGUARD_MCP_TOKEN",
"password": true
}
],
"servers": {
"wpguard-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/cgallic/wpguard-mcp:0.4.0"
],
"env": {
"WPGUARD_MCP_TOKEN": "${input:wpguard-mcp-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs