Skip to content
VS Code

Raven — Solana Token Verification for VS Code

io.github.billybotticelli4u-collab/raven-verify

Solana token-launch verification for AI agents — deterministic, replayable, returns 'unknowable'.

client:VS Code transport:stdio runtime:npm

Install Raven — Solana Token Verification in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "raven-solana-rpc-url",
      "description": "RAVEN_SOLANA_RPC_URL",
      "password": true
    }
  ],
  "servers": {
    "raven-verify": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "raven-verify-mcp"
      ],
      "env": {
        "RAVEN_SOLANA_RPC_URL": "${input:raven-solana-rpc-url}"
      }
    }
  }
}

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

Raven — Solana Token Verification in other clients