hashproof for VS Code
io.github.csacanam/hashproof
Issue verifiable credentials from AI agents for $0.10 via x402. On-chain on Celo, IPFS-pinned.
client:VS Code
transport:stdio
runtime:npm
Install hashproof in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "hashproof-api-key",
"description": "HASHPROOF_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "hashproof-wallet-private-key",
"description": "HASHPROOF_WALLET_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "hashproof-x402-network",
"description": "HASHPROOF_X402_NETWORK",
"password": true
}
],
"servers": {
"hashproof": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"hashproof-mcp"
],
"env": {
"HASHPROOF_API_KEY": "${input:hashproof-api-key}",
"HASHPROOF_WALLET_PRIVATE_KEY": "${input:hashproof-wallet-private-key}",
"HASHPROOF_X402_NETWORK": "${input:hashproof-x402-network}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs