Skip to content
VS Code

Anaxer for VS Code

com.anaxer/mcp

Query Solana DEX data: prices, metadata, launches, graduations, live stream tails.

client:VS Code transport:stdio runtime:npm

Install Anaxer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anaxer-api-key",
      "description": "ANAXER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anaxer-base-url",
      "description": "ANAXER_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anaxer-ws-url",
      "description": "ANAXER_WS_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@anaxer/mcp"
      ],
      "env": {
        "ANAXER_API_KEY": "${input:anaxer-api-key}",
        "ANAXER_BASE_URL": "${input:anaxer-base-url}",
        "ANAXER_WS_URL": "${input:anaxer-ws-url}"
      }
    }
  }
}

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

Anaxer in other clients