plan_vacation
Start planning your vacation by using structured prompts to search for locations, attractions, restaurants, and hotels. Confirms when the vacation planning process begins.
Instructions
Initiates the vacation planning process using the structured prompt.
This should be used whenever a user wants to plan a trip or vacation.
Returns:
A message confirming the vacation planning process has started
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:174-187 (handler)The handler function for the 'plan_vacation' tool, decorated with @mcp.tool() for registration. It returns a JSON message to initiate the vacation planning process.@mcp.tool() async def plan_vacation() -> str: """ Initiates the vacation planning process using the structured prompt. This should be used whenever a user wants to plan a trip or vacation. Returns: A message confirming the vacation planning process has started """ # This tool doesn't need to return data, just trigger the prompt return json.dumps({ "message": "Vacation planning process initiated. Please follow the structured prompt to create a personalized itinerary." })