{
  "$schema": "https://webmcp.org/schema/v1.json",
  "name": "darilo.si",
  "description": "Slovenian editorial site with shopping guides, gift ideas, promo codes and Temu reviews. AI agents can read our guides, search the catalog, and access structured product data — we do not perform autonomous purchases.",
  "version": "1.0.0",
  "homepage": "https://darilo.si",
  "llms_txt": "https://darilo.si/llms.txt",
  "agents_txt": "https://darilo.si/agents.txt",
  "agents": [
    {
      "name": "search",
      "description": "Search for products, guides, and promo codes by keyword.",
      "input_schema": {
        "type": "object",
        "properties": {
          "q": { "type": "string", "description": "Search query (e.g. 'Temu kopalke', 'revolut n26 primerjava')." },
          "category": { "type": "string", "enum": ["tehnologija", "dom-in-vrt", "moda", "fitnes", "darila", "fintech"] }
        },
        "required": ["q"]
      },
      "endpoint": "https://darilo.si/iskanje?q={q}",
      "method": "GET"
    },
    {
      "name": "view_guide",
      "description": "Read a long-form shopping guide, product comparison, or Temu how-to article.",
      "input_schema": {
        "type": "object",
        "properties": {
          "slug": { "type": "string", "description": "URL slug (e.g. 'najboljsi-robotski-sesalniki', 'ali-je-temu-varen-...')." }
        },
        "required": ["slug"]
      },
      "endpoint": "https://darilo.si/vodniki/{slug}",
      "method": "GET"
    },
    {
      "name": "view_promo_codes",
      "description": "Get current verified promo codes for Slovenian online stores (Temu, AliExpress, About You, MyProtein, Uber, Wolt, Bolt).",
      "input_schema": {
        "type": "object",
        "properties": {
          "store": { "type": "string", "description": "Filter by store slug (temu, ali, about-you, myprotein, uber, wolt, bolt)." }
        }
      },
      "endpoint": "https://darilo.si/kode",
      "method": "GET"
    },
    {
      "name": "view_store_guide",
      "description": "Read a store-specific guide — what the store sells, how to use it, payment methods, EU regulations.",
      "input_schema": {
        "type": "object",
        "properties": {
          "store": { "type": "string", "enum": ["temu", "aliexpress", "about-you", "myprotein"] },
          "topic": { "type": "string", "description": "Optional topic like 'dostava', 'vracila', 'eu-carina', 'kontakt'." }
        },
        "required": ["store"]
      },
      "endpoint": "https://darilo.si/{store}/{topic}",
      "method": "GET"
    },
    {
      "name": "view_fintech_guide",
      "description": "Read a fintech comparison guide (Revolut, N26, Wise, comparison reviews).",
      "input_schema": {
        "type": "object",
        "properties": {
          "provider": { "type": "string", "enum": ["revolut", "n26", "wise"] }
        }
      },
      "endpoint": "https://darilo.si/fintech/{provider}",
      "method": "GET"
    },
    {
      "name": "contact_editorial",
      "description": "Open the editorial contact page to reach the darilo.si team.",
      "input_schema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "https://darilo.si/kontakt",
      "method": "GET"
    },
    {
      "name": "view_disclosure",
      "description": "Read our affiliate disclosure — how we monetize via partner links.",
      "input_schema": { "type": "object", "properties": {} },
      "endpoint": "https://darilo.si/partnersko-razkritje",
      "method": "GET"
    },
    {
      "name": "view_methodology",
      "description": "Read how we prepare product recommendations (testing methodology, sourcing, editorial standards).",
      "input_schema": { "type": "object", "properties": {} },
      "endpoint": "https://darilo.si/kako-pripravljamo-priporocila",
      "method": "GET"
    }
  ],
  "capabilities": [
    "content_discovery",
    "shopping_guides",
    "gift_guides",
    "store_guides",
    "coupon_aggregation",
    "fintech_comparisons",
    "read_only"
  ],
  "restrictions": [
    "no_autonomous_purchases",
    "no_payment_processing",
    "no_user_data_storage",
    "rate_limit_60_per_minute"
  ],
  "contact": "https://darilo.si/kontakt",
  "languages": ["sl-SI", "en-US"],
  "robots_policy": "https://darilo.si/robots.txt",
  "llms_txt_url": "https://darilo.si/llms.txt",
  "agents_txt_url": "https://darilo.si/agents.txt"
}
