cox_ai_itinerary
Generate AI-powered travel itineraries for Cox's Bazar using weather data and trip duration to create personalized daily plans for your Bangladesh vacation.
Instructions
Full workflow: fetch daily temperatures + generate AI itinerary. Uses the registered MCP prompt 'generate_itinerary' for consistency.
Args: days: Number of days for the trip start_date: Start date (e.g., "2025-01-15", "15 Jan 2025", "today")
Returns: Formatted prompt for AI to generate detailed itinerary
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | Yes | ||
| start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"title": "Days",
"type": "integer"
},
"start_date": {
"title": "Start Date",
"type": "string"
}
},
"required": [
"days",
"start_date"
],
"type": "object"
}