delete_hotel
Remove a hotel from the LumbreTravel MCP Server by specifying its unique ID. Streamline travel program management with targeted deletion.
Instructions
Eliminar un hotel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID del hotel a eliminar |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID del hotel a eliminar",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}