Skip to content
VS Code

TradeOS Public Intelligence for VS Code

io.github.agenticsrclab/tradeos-public-intel-mcp

Crypto market intelligence, evidence, watchlists, feedback, and paid x402 SKU routing.

client:VS Code transport:stdio runtime:npm

Install TradeOS Public Intelligence in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tradeos-api-base",
      "description": "TRADEOS_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tradeos-public-intel-key",
      "description": "TRADEOS_PUBLIC_INTEL_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tradeos-account-token",
      "description": "TRADEOS_ACCOUNT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tradeos-x402-base-url",
      "description": "TRADEOS_X402_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tradeos-x402-agent-id",
      "description": "TRADEOS_X402_AGENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tradeos-x402-payment-header",
      "description": "TRADEOS_X402_PAYMENT_HEADER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tradeos-x402-wallet-address",
      "description": "TRADEOS_X402_WALLET_ADDRESS",
      "password": true
    }
  ],
  "servers": {
    "tradeos-public-intel-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@agenticsrclab/tradeos-public-intel-mcp-server"
      ],
      "env": {
        "TRADEOS_API_BASE": "${input:tradeos-api-base}",
        "TRADEOS_PUBLIC_INTEL_KEY": "${input:tradeos-public-intel-key}",
        "TRADEOS_ACCOUNT_TOKEN": "${input:tradeos-account-token}",
        "TRADEOS_X402_BASE_URL": "${input:tradeos-x402-base-url}",
        "TRADEOS_X402_AGENT_ID": "${input:tradeos-x402-agent-id}",
        "TRADEOS_X402_PAYMENT_HEADER": "${input:tradeos-x402-payment-header}",
        "TRADEOS_X402_WALLET_ADDRESS": "${input:tradeos-x402-wallet-address}"
      }
    }
  }
}

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

TradeOS Public Intelligence in other clients