{
  "schema_version": "1.0",
  "name": "TSOT - טיסות זולות",
  "description": "Israeli travel deals website for cheap flights, vacation packages, hotels, deals, organized tours and car rentals. אתר ישראלי לטיסות זולות, חבילות נופש, מלונות, דילים, טיולים מאורגנים והשכרת רכב.",
  "url": "https://tsot.co.il",
  "tools": [
    {
      "name": "search_cheap_flights",
      "description": "Search for cheap flights from Israel to worldwide destinations. חיפוש טיסות זולות מישראל ליעדים ברחבי העולם.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "destination": { "type": "string", "description": "Destination city or country" },
          "category": {
            "type": "string",
            "description": "Category of travel deal",
            "enum": ["טיסות זולות", "חבילות נופש", "מלונות", "דילים", "טיולים מאורגנים", "השכרת רכב"]
          }
        }
      }
    },
    {
      "name": "browse_blog_articles",
      "description": "Browse travel blog articles, tips, guides and deals. עיון במאמרים על טיסות זולות, טיפים, מדריכים ודילים.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "tag": {
            "type": "string",
            "description": "Filter articles by tag",
            "enum": ["טיפים", "מדריכים", "סיפורי מקרה", "חדשות", "עולמי"]
          }
        }
      }
    },
    {
      "name": "read_article",
      "description": "Read a specific travel article by its slug. קריאת מאמר ספציפי.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": { "type": "string", "description": "The article slug/URL identifier" }
        },
        "required": ["slug"]
      }
    },
    {
      "name": "submit_contact_request",
      "description": "Submit a contact request to join the TSOT index. שליחת בקשת יצירת קשר.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": { "type": "string", "description": "Full name" },
          "phone": { "type": "string", "description": "Phone number" },
          "email": { "type": "string", "description": "Email address" }
        },
        "required": ["name", "phone"]
      }
    },
    {
      "name": "get_site_info",
      "description": "Get information about the TSOT travel deals website. קבלת מידע על אתר TSOT.",
      "inputSchema": { "type": "object" }
    },
    {
      "name": "navigate_to_page",
      "description": "Navigate to a specific page on the TSOT website. ניווט לדף ספציפי באתר.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "page": {
            "type": "string",
            "description": "Page to navigate to",
            "enum": ["home", "about", "how-it-works", "sitemap", "cheap-flights", "vacation-packages", "hotels", "deals", "organized-tours", "car-rental"]
          }
        },
        "required": ["page"]
      }
    }
  ]
}
