Skip to content
VS Code

Sequesign for VS Code

io.github.sequesign/sequesign

Cryptographically verifiable receipts of an agent's delegated work, verified offline.

client:VS Code transport:stdio runtime:npm

Install Sequesign in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sequesign-mode",
      "description": "SEQUESIGN_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sequesign-api-key",
      "description": "SEQUESIGN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sequesign-agent-private-key",
      "description": "SEQUESIGN_AGENT_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sequesign-package-dir",
      "description": "SEQUESIGN_PACKAGE_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sequesign-template-registry-url",
      "description": "SEQUESIGN_TEMPLATE_REGISTRY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sequesign-template-registry-token",
      "description": "SEQUESIGN_TEMPLATE_REGISTRY_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "sequesign": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@sequesign/mcp"
      ],
      "env": {
        "SEQUESIGN_MODE": "${input:sequesign-mode}",
        "SEQUESIGN_API_KEY": "${input:sequesign-api-key}",
        "SEQUESIGN_AGENT_PRIVATE_KEY": "${input:sequesign-agent-private-key}",
        "SEQUESIGN_PACKAGE_DIR": "${input:sequesign-package-dir}",
        "SEQUESIGN_TEMPLATE_REGISTRY_URL": "${input:sequesign-template-registry-url}",
        "SEQUESIGN_TEMPLATE_REGISTRY_TOKEN": "${input:sequesign-template-registry-token}"
      }
    }
  }
}

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

Sequesign in other clients