{
  "name": "crypto-data-vendor",
  "version": "3.1.0",
  "description": "Real-time crypto data. Prices, signals, predictions. Pay in sats.",
  "server": {
    "type": "http",
    "url": "https://web-production-a2ec.up.railway.app"
  },
  "tools": [
    {
      "name": "get_crypto_price",
      "description": "Current USD price",
      "input_schema": {
        "type": "object",
        "required": [
          "symbol",
          "key"
        ],
        "properties": {
          "symbol": {
            "type": "string"
          },
          "key": {
            "type": "string"
          }
        }
      },
      "endpoint": "/api/v1/price"
    },
    {
      "name": "get_trading_signal",
      "description": "BUY/SELL/HOLD with confidence",
      "input_schema": {
        "type": "object",
        "required": [
          "symbol",
          "key"
        ],
        "properties": {
          "symbol": {
            "type": "string"
          },
          "key": {
            "type": "string"
          }
        }
      },
      "endpoint": "/api/v1/signal"
    },
    {
      "name": "get_full_analysis",
      "description": "Price+signal+prediction+sentiment",
      "input_schema": {
        "type": "object",
        "required": [
          "symbol",
          "key"
        ],
        "properties": {
          "symbol": {
            "type": "string"
          },
          "key": {
            "type": "string"
          }
        }
      },
      "endpoint": "/api/v1/bundle"
    }
  ],
  "authentication": {
    "type": "api_key",
    "description": "POST /api/v1/register \u2192 free key (100k sats)"
  }
}