update_include
Modify and update the name and description of an included travel extra using a unique ID on the LumbreTravel MCP Server, ensuring accurate and current travel program details.
Instructions
Actualizar un extra o incluído.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Descripción | |
id | Yes | ID a actualizar | |
name | Yes | Nombre |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Descripción",
"type": "string"
},
"id": {
"description": "ID a actualizar",
"type": "string"
},
"name": {
"description": "Nombre",
"type": "string"
}
},
"required": [
"id",
"name",
"description"
],
"type": "object"
}