Skip to content
VS Code

cyberwarex chain data for VS Code

io.github.cyberpunk11147/cyberwarex-chain-data

EVM onchain data: wallet, token, price, gas, transactions, ENS across 5 chains.

client:VS Code transport:stdio runtime:oci

Install cyberwarex chain data in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "chain-x-payment",
      "description": "CHAIN_X_PAYMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "chain-base-url",
      "description": "CHAIN_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "cyberwarex-chain-data": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/cyberpunk11147/cyberwarex-chain-data:1.1.0"
      ],
      "env": {
        "CHAIN_X_PAYMENT": "${input:chain-x-payment}",
        "CHAIN_BASE_URL": "${input:chain-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

cyberwarex chain data in other clients