Skip to content
VS Code

CanUSign for VS Code

io.github.devin-lemcke/canusign-mcp-server

Create PDF contracts, send signing links and check signature status with CanUSign e-signatures.

client:VS Code transport:stdio runtime:npm

Install CanUSign in VS Code

.vscode/mcp.json

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

CanUSign in other clients