V

voyacar.com

Voyacar is a vehicle rental marketplace. Its WebMCP tool lets an agent search available rental cars and motorcycles for a city and date range, returning offers with price, agency, location, and a booking link.

1read
https://voyacar.com/

live · Travel & Booking · JSON · API for agents

Tools 1 tool

search_rentalsread

Search available rental cars or motorcycles on Voyacar for a city and date range. Returns offers with price, agency, location and a booking link.

View tool JSON
{
  "name": "search_rentals",
  "kind": "read",
  "impl": "imperative",
  "description": "Search available rental cars or motorcycles on Voyacar for a city and date range. Returns offers with price, agency, location and a booking link.",
  "inputSchema": {
    "type": "object",
    "required": [
      "city",
      "pickup_date",
      "return_date"
    ],
    "properties": {
      "city": {
        "type": "string",
        "description": "City slug or name, e.g. \"marrakesh\"."
      },
      "pickup_date": {
        "type": "string",
        "description": "ISO 8601 date, e.g. 2026-07-14."
      },
      "return_date": {
        "type": "string",
        "description": "ISO 8601 date after pickup_date."
      },
      "vehicle_type": {
        "type": "string",
        "enum": [
          "car",
          "motorcycle"
        ]
      },
      "transmission": {
        "type": "string",
        "enum": [
          "manual",
          "automatic"
        ]
      }
    }
  }
}