Skip to content
VS Code

addsign mcp for VS Code

io.github.rmindgh/addsign-mcp

Send documents for e-signature, track status, remind signers, and download signed PDFs via AddSign

client:VS Code transport:stdio runtime:npm

Install addsign mcp in VS Code

.vscode/mcp.json

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

addsign mcp in other clients