Skip to content
VS Code

SignaTrust for VS Code

io.signatrust/mcp-server

Blockchain-anchored e-signatures: send envelopes, manage templates, verify anchors on Solana.

client:VS Code transport:stdio runtime:npm

Install SignaTrust in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "signatrust-api-key",
      "description": "SIGNATRUST_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "signatrust-api-url",
      "description": "SIGNATRUST_API_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@signatrust/mcp-server"
      ],
      "env": {
        "SIGNATRUST_API_KEY": "${input:signatrust-api-key}",
        "SIGNATRUST_API_URL": "${input:signatrust-api-url}"
      }
    }
  }
}

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

SignaTrust in other clients