A
licenseNot graded
qualityC
maintenanceMCP server for multi-agent travel planning, orchestrating parallel expert calls to generate structured itineraries and persist them to SQLite.
MIT
No user-submitted related servers found.
Scored across 3 tools
Each tool has a clearly distinct purpose: reading the itinerary, adding an activity, and removing an activity. There is no overlap or ambiguity between them.
All tool names follow the same verb_noun pattern with snake_case: get_itinerary, add_activity, remove_activity. This is fully consistent and predictable.
Three tools is well-scoped for a simple trip planner. Each tool earns its place, and the count is neither too thin nor excessive for the apparent purpose.
The set covers the core lifecycle of reading, adding, and removing activities. The only minor gap is the lack of an update operation, but this can be worked around with remove_activity followed by add_activity.