sops mcp for VS Code
io.github.privacyplaybook/sops-mcp
MCP server for creating and managing SOPS-encrypted secrets
client:VS Code
transport:stdio
runtime:pypi
Install sops mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sops-mcp-age-public-key",
"description": "SOPS_MCP_AGE_PUBLIC_KEY",
"password": true
},
{
"type": "promptString",
"id": "sops-age-key",
"description": "SOPS_AGE_KEY",
"password": true
}
],
"servers": {
"sops-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"sops-mcp"
],
"env": {
"SOPS_MCP_AGE_PUBLIC_KEY": "${input:sops-mcp-age-public-key}",
"SOPS_AGE_KEY": "${input:sops-age-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs