{
  "name": "Wiseman Automart Agent Tools",
  "version": "1.0",
  "tools": [
    {
      "name": "requestQuote",
      "description": "Submit a quote request for a used vehicle part.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "year": { "type": "string", "description": "The manufacture year of the vehicle (e.g. 2018)." },
          "makeModel": { "type": "string", "description": "The make and model of the vehicle (e.g. Ford F-150)." },
          "partName": { "type": "string", "description": "The name of the vehicle part (e.g. Engine, Transmission, ABS Control Module, Rear Axle Assembly, Engine Control Module)." },
          "name": { "type": "string", "description": "The full name of the customer requesting the quote." },
          "email": { "type": "string", "format": "email", "description": "The customer's email address." },
          "phone": { "type": "string", "description": "The customer's phone number." }
        },
        "required": ["year", "makeModel", "partName", "name", "email", "phone"]
      }
    }
  ]
}
