update_vehicle
Update vehicle details in LumbreTravel MCP Server, including ID, name, description, brand, model, capacity, and provider information, to maintain accurate travel program data.
Instructions
Actualizar un vehículo.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| brand | Yes | Marca del vehículo | |
| capacity | Yes | Capacidad del vehículo | |
| description | Yes | Descripción del vehículo | |
| id | Yes | ID del vehículo a actualizar | |
| model | Yes | Modelo del vehículo | |
| name | Yes | Nombre del vehículo | |
| provider | Yes |
Input Schema (JSON Schema)
{
"properties": {
"brand": {
"description": "Marca del vehículo",
"type": "string"
},
"capacity": {
"description": "Capacidad del vehículo",
"type": "number"
},
"description": {
"description": "Descripción del vehículo",
"type": "string"
},
"id": {
"description": "ID del vehículo a actualizar",
"type": "string"
},
"model": {
"description": "Modelo del vehículo",
"type": "string"
},
"name": {
"description": "Nombre del vehículo",
"type": "string"
},
"provider": {
"properties": {
"id": {
"description": "ID del proveedor del vehículo",
"type": "string"
},
"name": {
"description": "Nombre del proveedor del vehículo",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"id",
"name",
"description",
"brand",
"model",
"capacity",
"provider"
],
"type": "object"
}