trustsource for VS Code
io.github.surfether/trustsource
x402-paid domain verification for AI agents — trustscore, SSL, security headers, robots.
client:VS Code
transport:stdio
runtime:npm
Install trustsource in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wallet-private-key",
"description": "WALLET_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "trustsource-api-url",
"description": "TRUSTSOURCE_API_URL",
"password": true
}
],
"servers": {
"trustsource": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"trustsource-mcp"
],
"env": {
"WALLET_PRIVATE_KEY": "${input:wallet-private-key}",
"TRUSTSOURCE_API_URL": "${input:trustsource-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