Skip to content
VS Code

enigmagent mcp for VS Code

io.github.agnuxo1/enigmagent-mcp

Local AES-256-GCM vault for AI agents. Secrets stay local, LLMs never see real API keys.

client:VS Code transport:stdio runtime:npm

Install enigmagent mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vault-password",
      "description": "VAULT_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vault-path",
      "description": "VAULT_PATH",
      "password": true
    }
  ],
  "servers": {
    "enigmagent-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "enigmagent-mcp"
      ],
      "env": {
        "VAULT_PASSWORD": "${input:vault-password}",
        "VAULT_PATH": "${input:vault-path}"
      }
    }
  }
}

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

enigmagent mcp in other clients