Skip to content
VS Code

$THREE Token for VS Code

io.github.nirholas/three-token-mcp

Price, hold, and burn $THREE on Solana — the first MCP server whose actions burn a token.

client:VS Code transport:stdio runtime:npm

Install $THREE Token in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "solana-secret-key",
      "description": "SOLANA_SECRET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "solana-rpc-url",
      "description": "SOLANA_RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "three-ws-base",
      "description": "THREE_WS_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "max-burn-usd",
      "description": "MAX_BURN_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "require-confirm",
      "description": "REQUIRE_CONFIRM",
      "password": true
    }
  ],
  "servers": {
    "three-token-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@three-ws/three-token-mcp"
      ],
      "env": {
        "SOLANA_SECRET_KEY": "${input:solana-secret-key}",
        "SOLANA_RPC_URL": "${input:solana-rpc-url}",
        "THREE_WS_BASE": "${input:three-ws-base}",
        "MAX_BURN_USD": "${input:max-burn-usd}",
        "REQUIRE_CONFIRM": "${input:require-confirm}"
      }
    }
  }
}

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

$THREE Token in other clients