signforge for VS Code
io.github.kumarprobeops/signforge
Send documents for e-signature from AI agents. Upload, sign, and download PDFs.
client:VS Code
transport:stdio
runtime:npm
Install signforge in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "signforge-api-key",
"description": "SIGNFORGE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "signforge-api-url",
"description": "SIGNFORGE_API_URL",
"password": true
}
],
"servers": {
"signforge": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@signforge/mcp-server"
],
"env": {
"SIGNFORGE_API_KEY": "${input:signforge-api-key}",
"SIGNFORGE_API_URL": "${input:signforge-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