﻿{
    "spec":  "webmcp/0.1",
    "site":  {
                 "name":  "New England Auto Logistics",
                 "version":  "2026.08",
                 "url":  "https://neautologistics.com/",
                 "description":  "Nationwide vehicle shipping and auto transport brokerage based in Worcester, Massachusetts."
             },
    "pages":  [
                  {
                      "url":  "/",
                      "intents":  [
                                      "learnAutoTransportServices",
                                      "requestVehicleShippingEstimate"
                                  ]
                  },
                  {
                      "url":  "/estimate/",
                      "intents":  [
                                      "requestVehicleShippingEstimate"
                                  ]
                  },
                  {
                      "url":  "/redirect/",
                      "intents":  [
                                      "contactNewEnglandAutoLogistics"
                                  ]
                  },
                  {
                      "url":  "/llms.txt",
                      "intents":  [
                                      "readAgentSummary"
                                  ]
                  }
              ],
    "tools":  [
                  {
                      "name":  "requestVehicleShippingEstimate",
                      "kind":  "transact",
                      "impl":  "declarative",
                      "page":  "/estimate/",
                      "description":  "Submit contact, route, vehicle, timing, and transport preferences for a written vehicle shipping estimate.",
                      "inputSchema":  {
                                          "type":  "object",
                                          "required":  [
                                                           "name",
                                                           "phone",
                                                           "from",
                                                           "to",
                                                           "vehicle"
                                                       ],
                                          "properties":  {
                                                             "name":  {
                                                                          "type":  "string",
                                                                          "description":  "Full name of the person requesting the estimate"
                                                                      },
                                                             "phone":  {
                                                                           "type":  "string",
                                                                           "description":  "Phone number for quote follow-up"
                                                                       },
                                                             "email":  {
                                                                           "type":  "string",
                                                                           "format":  "email",
                                                                           "description":  "Optional email address for quote follow-up"
                                                                       },
                                                             "from":  {
                                                                          "type":  "string",
                                                                          "description":  "Pickup ZIP code, city, or location"
                                                                      },
                                                             "to":  {
                                                                        "type":  "string",
                                                                        "description":  "Delivery ZIP code, city, or location"
                                                                    },
                                                             "vehicle":  {
                                                                             "type":  "string",
                                                                             "description":  "Vehicle year, make, and model"
                                                                         },
                                                             "transport":  {
                                                                               "type":  "string",
                                                                               "enum":  [
                                                                                            "Open carrier",
                                                                                            "Enclosed carrier",
                                                                                            "Not sure yet"
                                                                                        ],
                                                                               "description":  "Preferred transport type"
                                                                           },
                                                             "notes":  {
                                                                           "type":  "string",
                                                                           "description":  "Additional shipment notes"
                                                                       }
                                                         }
                                      }
                  },
                  {
                      "name":  "contactNewEnglandAutoLogistics",
                      "kind":  "answer",
                      "impl":  "declarative",
                      "page":  "/redirect/",
                      "description":  "Find phone, email, WhatsApp, website, and social links for New England Auto Logistics.",
                      "inputSchema":  {
                                          "type":  "object",
                                          "properties":  {

                                                         }
                                      }
                  }
              ],
    "flows":  [
                  {
                      "id":  "get_vehicle_shipping_quote",
                      "description":  "Read service details, open the estimate page, and submit a vehicle shipping estimate request.",
                      "steps":  [
                                    {
                                        "intent":  "learnAutoTransportServices",
                                        "page":  "/"
                                    },
                                    {
                                        "intent":  "requestVehicleShippingEstimate",
                                        "page":  "/estimate/"
                                    }
                                ]
                  }
              ]
}
