ProofSlip for VS Code
ai.proofslip/mcp-server
Receipt-based verification for AI agent workflows — create, verify, and poll ephemeral proof objects
client:VS Code
transport:stdio
runtime:npm
Install ProofSlip in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "proofslip-api-key",
"description": "PROOFSLIP_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "proofslip-base-url",
"description": "PROOFSLIP_BASE_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@proofslip/mcp-server"
],
"env": {
"PROOFSLIP_API_KEY": "${input:proofslip-api-key}",
"PROOFSLIP_BASE_URL": "${input:proofslip-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs