Skip to content
VS Code

unclaimed sol for VS Code

io.github.nedim1511/unclaimed-sol

The first Vibe Claiming MCP: AI agents scan and reclaim dormant SOL on Solana. Signs locally.

client:VS Code transport:stdio runtime:npm

Install unclaimed sol in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "solana-keypair-path",
      "description": "SOLANA_KEYPAIR_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "solana-private-key",
      "description": "SOLANA_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "solana-rpc-url",
      "description": "SOLANA_RPC_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unclaimed-sol-api-url",
      "description": "UNCLAIMED_SOL_API_URL",
      "password": true
    }
  ],
  "servers": {
    "unclaimed-sol": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@unclaimed-sol/mcp"
      ],
      "env": {
        "SOLANA_KEYPAIR_PATH": "${input:solana-keypair-path}",
        "SOLANA_PRIVATE_KEY": "${input:solana-private-key}",
        "SOLANA_RPC_URL": "${input:solana-rpc-url}",
        "UNCLAIMED_SOL_API_URL": "${input:unclaimed-sol-api-url}"
      }
    }
  }
}

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

unclaimed sol in other clients