walletlens for VS Code
io.github.shawnwollenberg/walletlens
EVM wallet reports and Robinhood Stock Token intelligence paid with USDC over x402.
client:VS Code
transport:stdio
runtime:npm
Install walletlens in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "walletlens-x402-private-key",
"description": "WALLETLENS_X402_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "walletlens-max-payment-usdc",
"description": "WALLETLENS_MAX_PAYMENT_USDC",
"password": true
},
{
"type": "promptString",
"id": "walletlens-expected-pay-to",
"description": "WALLETLENS_EXPECTED_PAY_TO",
"password": true
},
{
"type": "promptString",
"id": "walletlens-base-url",
"description": "WALLETLENS_BASE_URL",
"password": true
}
],
"servers": {
"walletlens": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@shawnwollenberg/walletlens-mcp"
],
"env": {
"WALLETLENS_X402_PRIVATE_KEY": "${input:walletlens-x402-private-key}",
"WALLETLENS_MAX_PAYMENT_USDC": "${input:walletlens-max-payment-usdc}",
"WALLETLENS_EXPECTED_PAY_TO": "${input:walletlens-expected-pay-to}",
"WALLETLENS_BASE_URL": "${input:walletlens-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