{
  "name": "Pure Nile Tours API",
  "description": "API for browsing Egypt tours, Nile cruises, and submitting booking inquiries",
  "base_url": "https://pureniletours.com",
  "version": "1.0",
  "type": "api",
  "artifacts": [
    {
      "type": "mcp",
      "url": "https://pureniletours.com/.well-known/mcp.json"
    }
  ],
  "endpoints": [
    {
      "path": "/tours/",
      "method": "GET",
      "description": "List all Egypt tours and Nile cruise packages",
      "parameters": []
    },
    {
      "path": "/tour/{id}",
      "method": "GET",
      "description": "Get details of a specific tour",
      "parameters": [
        {
          "name": "id",
          "type": "string",
          "required": true
        }
      ]
    },
    {
      "path": "/contact-us/",
      "method": "POST",
      "description": "Submit a booking or inquiry form",
      "parameters": [
        {
          "name": "name",
          "type": "string"
        },
        {
          "name": "email",
          "type": "string"
        }
      ]
    }
  ]
}