Skip to content
VS Code

crypto sentiment x402 for VS Code

io.github.whatevercat-creator/crypto-sentiment-x402

Real-time crypto sentiment for a ticker symbol from 8 news RSS feeds and the Fear & Greed Index

client:VS Code transport:stdio runtime:pypi

Install crypto sentiment x402 in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cdp-api-key-id",
      "description": "CDP_API_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cdp-api-key-secret",
      "description": "CDP_API_KEY_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cdp-wallet-name",
      "description": "CDP_WALLET_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sentiment-api-url",
      "description": "SENTIMENT_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x402-network",
      "description": "X402_NETWORK",
      "password": true
    }
  ],
  "servers": {
    "crypto-sentiment-x402": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "crypto-sentiment-x402-mcp"
      ],
      "env": {
        "CDP_API_KEY_ID": "${input:cdp-api-key-id}",
        "CDP_API_KEY_SECRET": "${input:cdp-api-key-secret}",
        "CDP_WALLET_NAME": "${input:cdp-wallet-name}",
        "SENTIMENT_API_URL": "${input:sentiment-api-url}",
        "X402_NETWORK": "${input:x402-network}"
      }
    }
  }
}

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

crypto sentiment x402 in other clients