Skip to content
VS Code

IronWallet for VS Code

io.ironwallet/mcp-server

Non-custodial crypto wallet MCP: check balances, sign and send transfers, and swap tokens locally.

client:VS Code transport:stdio runtime:npm

Install IronWallet in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "iw-read-only",
      "description": "IW_READ_ONLY",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ironwallet/mcp-server"
      ],
      "env": {
        "IW_READ_ONLY": "${input:iw-read-only}"
      }
    }
  }
}

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

IronWallet in other clients