Skip to content
VS Code

Sealed for VS Code

io.github.edwardyen724-g/sealed

Per-call paid skills for AI agents, run server-side: inputs in, outputs back. The body never ships.

client:VS Code transport:stdio runtime:npm

Install Sealed in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sealed-api-url",
      "description": "SEALED_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sealed-api-key",
      "description": "SEALED_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "sealed": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "sealed-mcp"
      ],
      "env": {
        "SEALED_API_URL": "${input:sealed-api-url}",
        "SEALED_API_KEY": "${input:sealed-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

Sealed in other clients