{
  "webmcp": "0.1",
  "name": "inShop.hu",
  "description": "Magyar webáruház — termék keresés és termékadatok HTTP toolokon keresztül (read-only, session/kosár nélkül).",
  "url": "https://www.inshop.hu/",
  "discovery": {
    "agents_json": "https://www.inshop.hu/agents.json",
    "openapi": "https://www.inshop.hu/agent-api/openapi.json",
    "llms_txt": "https://www.inshop.hu/llms.txt"
  },
  "tools": [
    {
      "name": "search_products",
      "description": "Termékek keresése kulcsszó (q) alapján. Opcionális kategória slug és lapozás.",
      "method": "GET",
      "endpoint": "https://www.inshop.hu/agent-api/search",
      "inputSchema": {
        "type": "object",
        "properties": {
          "q": {
            "type": "string",
            "description": "Keresőszó (kötelező, min. 2 karakter)"
          },
          "kategoria": {
            "type": "string",
            "description": "Opcionális 1. szintű kategória URL-slug"
          },
          "page": {
            "type": "integer",
            "description": "Lapozás (alap: 1)"
          },
          "limit": {
            "type": "integer",
            "description": "Találatok száma (max 20)"
          }
        },
        "required": ["q"]
      },
      "annotations": {
        "readOnlyHint": true
      }
    },
    {
      "name": "get_product",
      "description": "Termék részletei numerikus ID alapján.",
      "method": "GET",
      "endpoint": "https://www.inshop.hu/agent-api/products/{id}",
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "termek.id"
          }
        },
        "required": ["id"]
      },
      "annotations": {
        "readOnlyHint": true
      }
    },
    {
      "name": "get_product_by_sku",
      "description": "Termék lekérdezése cikkszám (SKU) alapján.",
      "method": "GET",
      "endpoint": "https://www.inshop.hu/agent-api/products/by-sku/{sku}",
      "inputSchema": {
        "type": "object",
        "properties": {
          "sku": {
            "type": "string",
            "description": "Belső cikkszám"
          }
        },
        "required": ["sku"]
      },
      "annotations": {
        "readOnlyHint": true
      }
    }
  ]
}
