Skip to content
VS Code

Citable for VS Code

io.github.zaialamm/citable-mcp

SEO and AI-visibility checks agents buy per call — USDC on Solana, no API key.

client:VS Code transport:stdio runtime:npm

Install Citable in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "citable-max-price",
      "description": "CITABLE_MAX_PRICE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "citable-wallet",
      "description": "CITABLE_WALLET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "citable-api",
      "description": "CITABLE_API",
      "password": true
    }
  ],
  "servers": {
    "citable-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "citable-mcp"
      ],
      "env": {
        "CITABLE_MAX_PRICE": "${input:citable-max-price}",
        "CITABLE_WALLET": "${input:citable-wallet}",
        "CITABLE_API": "${input:citable-api}"
      }
    }
  }
}

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

Citable in other clients