Skip to content
VS Code

Shots for Bots for VS Code

com.shotsforbots/shotsforbots-mcp

Search 3,790 photographs free; buy full-resolution originals with USDC over HTTP 402 (x402).

client:VS Code transport:stdio runtime:npm

Install Shots for Bots in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "shotsforbots-private-key",
      "description": "SHOTSFORBOTS_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shotsforbots-max-price-usd",
      "description": "SHOTSFORBOTS_MAX_PRICE_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shotsforbots-daily-cap-usd",
      "description": "SHOTSFORBOTS_DAILY_CAP_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shotsforbots-out-dir",
      "description": "SHOTSFORBOTS_OUT_DIR",
      "password": true
    }
  ],
  "servers": {
    "shotsforbots-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "shotsforbots-mcp"
      ],
      "env": {
        "SHOTSFORBOTS_PRIVATE_KEY": "${input:shotsforbots-private-key}",
        "SHOTSFORBOTS_MAX_PRICE_USD": "${input:shotsforbots-max-price-usd}",
        "SHOTSFORBOTS_DAILY_CAP_USD": "${input:shotsforbots-daily-cap-usd}",
        "SHOTSFORBOTS_OUT_DIR": "${input:shotsforbots-out-dir}"
      }
    }
  }
}

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

Shots for Bots in other clients