Skip to content
VS Code

agent envelope mcp for VS Code

io.github.blackboxengineering/agent-envelope-mcp

Neutral MCP server for AgentEnvelope authority: sovereign verify + vault verify/lookup/mint.

client:VS Code transport:stdio runtime:npm

Install agent envelope mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ae-api-key",
      "description": "AE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "agent-envelope-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agent-envelope-mcp"
      ],
      "env": {
        "AE_API_KEY": "${input:ae-api-key}"
      }
    }
  }
}

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

agent envelope mcp in other clients