Skip to content
VS Code

vedetta for VS Code

com.dethboy/vedetta

x402 pay-per-call crypto sentiment, divergence & analyst reads. USDC on Base. NFA.

client:VS Code transport:stdio runtime:npm

Install vedetta in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "evm-private-key",
      "description": "EVM_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vedetta-api-url",
      "description": "VEDETTA_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vedetta-max-price-usd",
      "description": "VEDETTA_MAX_PRICE_USD",
      "password": true
    }
  ],
  "servers": {
    "vedetta": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "vedetta-mcp"
      ],
      "env": {
        "EVM_PRIVATE_KEY": "${input:evm-private-key}",
        "VEDETTA_API_URL": "${input:vedetta-api-url}",
        "VEDETTA_MAX_PRICE_USD": "${input:vedetta-max-price-usd}"
      }
    }
  }
}

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

vedetta in other clients