Travel Planner MCP Server

create_itinerary

Creates a personalized travel itinerary based on user preferences

Input Schema

NameRequiredDescriptionDefault
budgetNoBudget in USD
destinationYesDestination location
endDateYesEnd date (YYYY-MM-DD)
originYesStarting location
preferencesNoTravel preferences
startDateYesStart date (YYYY-MM-DD)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "budget": { "description": "Budget in USD", "type": "number" }, "destination": { "description": "Destination location", "type": "string" }, "endDate": { "description": "End date (YYYY-MM-DD)", "type": "string" }, "origin": { "description": "Starting location", "type": "string" }, "preferences": { "description": "Travel preferences", "items": { "type": "string" }, "type": "array" }, "startDate": { "description": "Start date (YYYY-MM-DD)", "type": "string" } }, "required": [ "origin", "destination", "startDate", "endDate" ], "type": "object" }