{
    "name": "Pure Nile Tours",
    "description": "Egypt travel agency specializing in Nile cruises, Pyramids tours, and Egypt travel packages",
    "url": "https://pureniletours.com",
    "version": "1.0",
    "capabilities": [
        "tour_search",
        "itinerary_planning",
        "booking_inquiry"
    ],
    "tools": [
        {
            "name": "search_tours",
            "description": "Search available Egypt tours and Nile cruises by date, duration, and type",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "destination": {
                        "type": "string",
                        "description": "e.g. Luxor, Aswan, Cairo, Nile Cruise"
                    },
                    "duration_days": {
                        "type": "number",
                        "description": "Number of days for the tour"
                    },
                    "travelers": {
                        "type": "number",
                        "description": "Number of travelers"
                    }
                }
            }
        },
        {
            "name": "get_tour_details",
            "description": "Get full details, pricing and availability for a specific tour",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "tour_id": {
                        "type": "string"
                    }
                },
                "required": [
                    "tour_id"
                ]
            }
        },
        {
            "name": "booking_inquiry",
            "description": "Submit a booking inquiry for a tour",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "tour_id": {
                        "type": "string"
                    },
                    "name": {
                        "type": "string"
                    },
                    "email": {
                        "type": "string"
                    },
                    "travel_date": {
                        "type": "string"
                    },
                    "travelers": {
                        "type": "number"
                    }
                },
                "required": [
                    "tour_id",
                    "name",
                    "email",
                    "travel_date"
                ]
            }
        }
    ],
    "contact": {
        "email": "info@pureniletours.com",
        "website": "https://pureniletours.com"
    }
}