{
  "name": "hardware-hunter",
  "version": "1.0.0",
  "description": "Hardware Hunter WebMCP tool catalog. Exposes deal search, price benchmarks, and latest alerts as agent-callable tools.",
  "tools": [
    {
      "name": "search_deals",
      "description": "Search hardware deal listings by category, price range, and score. Returns title, price, score, verdict, source, and URL for each listing.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": [
              "gpu",
              "cpu",
              "ram",
              "ssd",
              "hdd",
              "nic",
              "switch",
              "psu",
              "case",
              "motherboard",
              "apple-mini",
              "apple-studio",
              "apple-macbook-air",
              "apple-macbook-pro",
              "apple-imac",
              "apple-mac-pro"
            ],
            "description": "Hardware category to search."
          },
          "min_score": {
            "type": "number",
            "description": "Minimum deal score (1-10). Default 7."
          },
          "max_price": {
            "type": "number",
            "description": "Maximum price in USD."
          },
          "limit": {
            "type": "number",
            "description": "Max results. Default 20, max 50."
          }
        }
      },
      "endpoint": "/api/public/deals"
    },
    {
      "name": "price_benchmark",
      "description": "Get price benchmarks (median, p25, p75, min, max) for a hardware component category based on real listing data.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": [
              "gpu",
              "cpu",
              "ram",
              "ssd",
              "hdd",
              "nic",
              "switch",
              "psu",
              "case",
              "motherboard",
              "apple-mini",
              "apple-studio",
              "apple-macbook-air",
              "apple-macbook-pro",
              "apple-imac",
              "apple-mac-pro"
            ],
            "description": "Component category to benchmark."
          }
        },
        "required": [
          "category"
        ]
      },
      "endpoint": "/api/public/prices/{category}"
    },
    {
      "name": "latest_deals",
      "description": "Get the most recent high-score deals (score 8+ ALERT tier).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "number",
            "description": "Max results. Default 10, max 25."
          }
        }
      },
      "endpoint": "/api/public/deals?min_score=8"
    },
    {
      "name": "get_categories",
      "description": "List all hardware component categories with component counts.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "/api/public/prices"
    },
    {
      "name": "apple_prices",
      "description": "Get current Apple Silicon pricing data by product category. Returns components with median prices, observation counts, and deal counts for Mac Mini, MacBook Air/Pro, iMac, Mac Studio, and Mac Pro.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": [
              "apple-mini",
              "apple-studio",
              "apple-macbook-air",
              "apple-macbook-pro",
              "apple-imac",
              "apple-mac-pro"
            ],
            "description": "Apple product category."
          },
          "chip": {
            "type": "string",
            "description": "Optional: filter by chip generation (e.g. \"M4\", \"M2 Pro\")."
          },
          "limit": {
            "type": "number",
            "description": "Max results. Default 20."
          }
        },
        "required": [
          "category"
        ]
      },
      "endpoint": "/api/public/prices/{category}"
    },
    {
      "name": "apple_deals",
      "description": "Get recent Apple Silicon deals \u2014 scored and ranked. Returns listings with prices, scores, verdicts, and source links for Mac products.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": [
              "apple-mini",
              "apple-studio",
              "apple-macbook-air",
              "apple-macbook-pro",
              "apple-imac",
              "apple-mac-pro"
            ],
            "description": "Apple product category."
          },
          "min_score": {
            "type": "number",
            "description": "Minimum deal score (1-10). Default 5."
          },
          "max_price": {
            "type": "number",
            "description": "Maximum price in USD."
          }
        },
        "required": [
          "category"
        ]
      },
      "endpoint": "/api/public/deals?category={category}&min_score={min_score}&max_price={max_price}"
    }
  ]
}