three.ws Provenance for VS Code
io.github.nirholas/provenance-mcp
Append-only, signed, on-chain-verifiable agent action log — record and audit what agents did.
client:VS Code
transport:stdio
runtime:npm
Install three.ws Provenance in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "three-ws-base",
"description": "THREE_WS_BASE",
"password": true
},
{
"type": "promptString",
"id": "three-ws-timeout-ms",
"description": "THREE_WS_TIMEOUT_MS",
"password": true
},
{
"type": "promptString",
"id": "three-ws-token",
"description": "THREE_WS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "three-ws-signer-key",
"description": "THREE_WS_SIGNER_KEY",
"password": true
}
],
"servers": {
"provenance-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@three-ws/provenance-mcp"
],
"env": {
"THREE_WS_BASE": "${input:three-ws-base}",
"THREE_WS_TIMEOUT_MS": "${input:three-ws-timeout-ms}",
"THREE_WS_TOKEN": "${input:three-ws-token}",
"THREE_WS_SIGNER_KEY": "${input:three-ws-signer-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs