{
  "$schema": "https://modelcontextprotocol.io/schemas/webmcp/2025-06/schema.json",
  "name": "chainluber",
  "version": "1.0.0",
  "description": "ChainLuber APP PRO - automata motoros láncolajzó webshop MCP interface",
  "tools": [
    {
      "name": "search_products",
      "description": "Search ChainLuber product catalog by keyword",
      "input_schema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search keyword (e.g. 'láncolajzó', 'Bio+ olaj', 'tartály')"
          }
        },
        "required": ["query"]
      },
      "endpoint": "https://chainluber.hu/kereses",
      "method": "GET",
      "param_mapping": {"query": "s"}
    },
    {
      "name": "check_compatibility",
      "description": "Check if a motorcycle is compatible with ChainLuber APP PRO",
      "input_schema": {
        "type": "object",
        "properties": {
          "brand": {
            "type": "string",
            "description": "Motorcycle brand (e.g. 'Yamaha', 'KTM', 'BMW')"
          },
          "model": {
            "type": "string",
            "description": "Model name (e.g. 'MT-09', '890 Duke', 'F900GS')"
          }
        },
        "required": ["brand", "model"]
      },
      "data_source": "https://chainluber.hu/kompatibilis-motorok.json"
    },
    {
      "name": "request_quote",
      "description": "Request a quote for ChainLuber APP PRO installation - user provides motorcycle info + contact",
      "input_schema": {
        "type": "object",
        "properties": {
          "brand": {"type": "string"},
          "model": {"type": "string"},
          "name": {"type": "string"},
          "email": {"type": "string", "format": "email"},
          "phone": {"type": "string"},
          "message": {"type": "string"}
        },
        "required": ["brand", "model", "name"]
      },
      "endpoint": "https://chainluber.hu/kompatibilitas-ajanlat.php",
      "method": "POST"
    },
    {
      "name": "get_product_details",
      "description": "Get detailed information about a specific ChainLuber product",
      "input_schema": {
        "type": "object",
        "properties": {
          "product_id": {
            "type": "integer",
            "description": "Product ID (20 = APP PRO base, 21 = APP PRO + oil, 24-32 = accessories)"
          }
        },
        "required": ["product_id"]
      },
      "products": [
        {"id": 20, "name": "ChainLuber APP PRO", "price": 59900, "currency": "HUF"},
        {"id": 21, "name": "ChainLuber APP PRO + 230ml Bio+ olaj", "price": 62900, "currency": "HUF"},
        {"id": 24, "name": "Dupla hatótávú tartály 110ml", "price": null},
        {"id": 25, "name": "Kormányra szerelhető tartály 45ml", "price": null},
        {"id": 26, "name": "Csere tartály 60ml", "price": null},
        {"id": 27, "name": "ChainLuber APP PRO vezérlőpanel", "price": null},
        {"id": 29, "name": "Chainluber Bio+ láncolaj 230ml", "price": null},
        {"id": 31, "name": "Boilube TubeKit csővezeték", "price": null},
        {"id": 32, "name": "ChainLuber QuickConnect csatlakozó", "price": null}
      ]
    }
  ],
  "contact": {
    "email": "info@chainluber.hu",
    "phone": "+36-30-605-1630",
    "url": "https://chainluber.hu"
  }
}
