Skip to content
VS Code

waxseal for VS Code

io.github.degenlegion-com/waxseal

Ed25519 identity for AI agents. Verify seals, sign documents, gate actions with approvals.

client:VS Code transport:stdio runtime:npm

Install waxseal in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "waxseal-private-key-pem",
      "description": "WAXSEAL_PRIVATE_KEY_PEM",
      "password": true
    }
  ],
  "servers": {
    "waxseal": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@waxseal/mcp"
      ],
      "env": {
        "WAXSEAL_PRIVATE_KEY_PEM": "${input:waxseal-private-key-pem}"
      }
    }
  }
}

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

waxseal in other clients