Skip to content
VS Code

multi wallet for VS Code

io.github.lordbasilaiassistant-sudo/multi-wallet

Multi-wallet management for AI agents — generate, distribute, consolidate on EVM

client:VS Code transport:stdio runtime:npm

Install multi wallet in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rpc-url",
      "description": "RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "thryx-api-key",
      "description": "THRYX_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deployer-private-key",
      "description": "DEPLOYER_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wallet-password",
      "description": "WALLET_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "multi-wallet": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@thryx/multi-wallet-mcp-server"
      ],
      "env": {
        "RPC_URL": "${input:rpc-url}",
        "THRYX_API_KEY": "${input:thryx-api-key}",
        "DEPLOYER_PRIVATE_KEY": "${input:deployer-private-key}",
        "WALLET_PASSWORD": "${input:wallet-password}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

multi wallet in other clients