Skip to content
VS Code

atv for VS Code

io.github.aarna-ai/atv

Access Aarna's DeFi yield vaults — query NAV/TVL/APY, build transactions, track portfolios.

client:VS Code transport:stdio runtime:npm

Install atv in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "atv-api-key",
      "description": "ATV_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "atv": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@aarna-ai/mcp-server-atv"
      ],
      "env": {
        "ATV_API_KEY": "${input:atv-api-key}"
      }
    }
  }
}

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

atv in other clients