Skip to main content
Glama

Server Details

Plot an AI-planned road trip onto an editable Stopful map — drive times, hotels & EV chargers.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.6/5.0
Disambiguation5/5

With only one tool, there is no possibility of confusing it with another tool. The tool's purpose is clearly scoped to plotting and updating road trips.

Naming Consistency5/5

The single tool name 'plot_trip' follows a clear verb_noun convention, and there are no other tool names to create inconsistency. The pattern is clean and predictable, though there is limited evidence from just one name.

Tool Count3/5

One tool is borderline for a road-trip planner. The tool is broad and handles many operations, but a single monolithic tool feels thin for a domain that typically benefits from separate read, update, and delete capabilities.

Completeness3/5

The tool covers creation, updating, and rendering of trips, but there are no explicit delete, list, or get-by-id operations. The returned trip id supports updates, yet lifecycle coverage is incomplete for a full planner.

Available Tools

1 tool
plot_tripAInspect

Creates a road trip on Stopful, or updates one plotted earlier, and returns an interactive map of it — adding, removing, reordering or renaming stops, changing nights, dates or party size, and redrawing the route. Renders a multi-stop driving route as an interactive map and returns a link to it, plus an inline map in clients that support one. Takes a list of stops in driving order, each with a place name, optional decimal lat/lon and number of nights; a stop without coordinates is geocoded from its name, and coordinates that fall far from where the name resolves are reported back in the result. Accepts an optional trip name, start date, party size, and a day-by-day itinerary that becomes a day view over the map. The map shows per-leg drive times and distances and an estimate of what the trip will cost before anything is booked, and is editable: the traveller can drag a pin to move a stop or drag the route to add one, and their changes are saved to the trip. Covers road trips and other multi-stop routes; a single destination or a route with no stops to draw has nothing to render. The result contains the map link, the trip as structured data, and the trip's id (see the id parameter for updating an existing trip).

ParametersJSON Schema
NameRequiredDescriptionDefault
idNoId of a trip returned by an earlier call. SEND IT whenever this call is about a trip already plotted in this conversation — showing one of its days, fixing a stop, changing the route. WITHOUT `id` a separate new trip is created and the traveller is left with a pile of near-duplicate maps instead of one they can follow. With it the map link stays the same and their own edits survive. To change an existing trip, send its `id` together with the COMPLETE new `stops` and `days`; there are no partial updates. The map link then stays the same, and edits the traveller made on the map survive. Stops: a re-sent stop keeps the position they dragged it to, stops or waypoints they added on the map but absent from `stops` are kept, and a stop that was there before and is now omitted is removed. Activities: a re-sent one keeps its identity and the place, price and booking it carries on the map, which this tool does not report and so cannot be sent back; an activity the traveller added themselves is kept whether or not it appears here; one this tool showed earlier and now omitted is removed. Without an `id` a separate new trip is created and none of that carries over. Sending `id` with no `stops` is also accepted and changes nothing — it returns the trip exactly as saved.
daysNoThe day-by-day itinerary: one entry per calendar day of the trip, in order, each with a title and the day's activities. It renders as a tappable day view over the map, and selecting a day highlights that day's driving; the activities also become the trip's itinerary in the full Stopful planner, where the traveller can edit them. Send it when planning a trip, or when rewriting the itinerary — the day titles replace the saved ones wholesale, there are no partial day updates, while the activities under them are reconciled with what is saved rather than overwritten (see `id`). On a call that only changes the route of an existing trip, leaving `days` out keeps the saved itinerary untouched, which is usually what is wanted; the result echoes whatever is saved either way.
nameNoOptional trip name (e.g. 'Lisbon → Pyrenees'). Defaults to first → last stop.
stopsYesThe route in driving order, 1 to 40 entries (the first is the origin). Required for a normal call — the only call that omits it is `id` on its own, which re-reads a saved trip unchanged. Each entry needs `name`; every other field is optional.
guestsNoOptional party size.
focusDayNoOptional. Open the map on this day of the itinerary, 1 = the first day. The map has a day view: this selects that day, greys the rest of the route and shows only that day's stops and activities. Use it WITH `id` to answer 'show me day 3' about a trip already plotted — that gives the traveller one map they can page through instead of a new map per day. Omit it for the whole trip.
startDateNoOptional trip start as ISO yyyy-mm-dd.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNoThe trip's id. Pass it back as the `id` argument to apply a later change to this same trip.
urlYesLink that opens this trip on the map at stopful.com.
daysNoThe day-by-day itinerary. Activities may include ones the traveller added in the planner rather than through this tool.
tripYesThe trip as rendered, after geocoding and (on a continuation) merging the traveller's own map edits.
assumedNoStops placed from their name alone because no coordinates were given — approximate pins.
focusDayNoSet when the call asked for one day: the map opens on that day of the itinerary, 1 = the first day.
notFoundNoStops that were requested but could not be placed, so they are absent from the map and the route.
warningsNoStops whose supplied coordinates are far from where their name resolves, with the distance and the resolved position.
unchangedNoTrue when the call only read the saved trip and changed nothing — an `id` sent with no `stops`.
keptByTravellerNoStops left where the traveller placed them on the map, so the coordinates supplied in this call were not applied.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes well beyond the annotations' readOnlyHint=false and destructiveHint=false. It discloses the full mutation and idempotency model: without `id` a new trip is created, with `id` the link stays the same and user map edits survive; there are no partial updates; stops and activities are reconciled rather than overwritten; geocoding behavior and coordinate-mismatch reporting are disclosed; editing behavior (dragging pins/routes) and cost estimates are described. This is rich behavioral context that annotations alone cannot convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but information-dense; every sentence carries a distinct behavioral fact. The core purpose is front-loaded in the first sentence, and the most important operational rule (send `id` for existing trips) is repeated where it matters, in the `id` parameter. It loses one point because the opening paragraph is a dense run-on list of capabilities that could be better structured, and some repetition between the description and the `id` parameter description could be trimmed.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description accounts for all 7 parameters, the output (map link, structured trip, `id`), edge cases (no stops, id-only call, focusDay usage, days omission), and the annotations' openWorldHint. With an output schema present, the description does not need to enumerate return fields in detail, and what it does state about the result rounds out the picture. Nothing an agent needs to decide whether and how to call this tool is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3, but the description adds substantial semantic value beyond the schema: it explains the create-vs-update semantics of `id`, the reconciliation rules for stops and activities, the geocoding/coordinate mismatch behavior, the day-view interaction for `focusDay`, and the 'no partial updates' rule for `days`. This is far beyond what the property descriptions alone provide, so a 5 is warranted.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a precise verb+object pair ('Creates a road trip... or updates one... and returns an interactive map') and enumerates the exact mutations it supports: adding, removing, reordering, renaming stops, changing nights, dates, party size, and redrawing the route. It also explicitly contrasts itself with nothing to render ('a single destination or a route with no stops to draw has nothing to render'), which disambiguates its scope even without siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives concrete when-to-use guidance: use it to plan or update a trip, send `id` when the call is about a trip already plotted, and leave `days` out when only changing the route to preserve the saved itinerary. It also states the negative case ('a single destination or a route with no stops to draw has nothing to render'), which tells an agent when not to call it. The `id` parameter description carries an extensive when-to-send/when-not-to-send explanation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool update
    • Changedplot_trip3 fields changed
      • addedInput schema / properties / focusDay
        Added value: +{
        +  "description": "Optional. Open the map on this day of the itinerary, 1 = the first day. The map has a day view: this selects that day, greys the rest of the route and shows only that day's stops and activities. Use it WITH `id` to answer 'show me day 3' about a trip already plotted — that gives the traveller one map they can page through instead of a new map per day. Omit it for the whole trip.",
        +  "type": "integer"
        +}
      • changedInput schema / properties / id / description
        Previous value: -"Optional. Id of a trip returned by an earlier call, identifying which trip this call applies to. To change an existing trip, send its `id` together with the COMPLETE new `stops` and `days`; there are no partial updates. The map link then stays the same, and edits the traveller made on the map survive. Stops: a re-sent stop keeps the position they dragged it to, stops or waypoints they added on the map but absent from `stops` are kept, and a stop that was there before and is now omitted is removed. Activities: a re-sent one keeps its identity and the place, price and booking it carries on the map, which this tool does not report and so cannot be sent back; an activity the traveller added themselves is kept whether or not it appears here; one this tool showed earlier and now omitted is removed. Without an `id` a separate new trip is created and none of that carries over. Sending `id` with no `stops` is also accepted and changes nothing — it returns the trip exactly as saved."New value: +"Id of a trip returned by an earlier call. SEND IT whenever this call is about a trip already plotted in this conversation — showing one of its days, fixing a stop, changing the route. WITHOUT `id` a separate new trip is created and the traveller is left with a pile of near-duplicate maps instead of one they can follow. With it the map link stays the same and their own edits survive. To change an existing trip, send its `id` together with the COMPLETE new `stops` and `days`; there are no partial updates. The map link then stays the same, and edits the traveller made on the map survive. Stops: a re-sent stop keeps the position they dragged it to, stops or waypoints they added on the map but absent from `stops` are kept, and a stop that was there before and is now omitted is removed. Activities: a re-sent one keeps its identity and the place, price and booking it carries on the map, which this tool does not report and so cannot be sent back; an activity the traveller added themselves is kept whether or not it appears here; one this tool showed earlier and now omitted is removed. Without an `id` a separate new trip is created and none of that carries over. Sending `id` with no `stops` is also accepted and changes nothing — it returns the trip exactly as saved."
      • addedOutput schema / properties / focusDay
        Added value: +{
        +  "description": "Set when the call asked for one day: the map opens on that day of the itinerary, 1 = the first day.",
        +  "type": "integer"
        +}
  2. 1 tool update
    • Changedplot_trip2 fields changed
      • changedInput schema / properties / days / description
        Previous value: -"The day-by-day itinerary: one entry per calendar day of the trip, in order, each with a title and the day's activities. It renders as a tappable day view over the map, and selecting a day highlights that day's driving; the activities also become the trip's itinerary in the full Stopful planner, where the traveller can edit them. Send it when planning a trip, or when deliberately rewriting the itinerary — it REPLACES the saved one wholesale, there are no partial day updates. On a call that only changes the route of an existing trip, leaving `days` out keeps the saved itinerary untouched, which is usually what is wanted; the result echoes whatever is saved either way."New value: +"The day-by-day itinerary: one entry per calendar day of the trip, in order, each with a title and the day's activities. It renders as a tappable day view over the map, and selecting a day highlights that day's driving; the activities also become the trip's itinerary in the full Stopful planner, where the traveller can edit them. Send it when planning a trip, or when rewriting the itinerary — the day titles replace the saved ones wholesale, there are no partial day updates, while the activities under them are reconciled with what is saved rather than overwritten (see `id`). On a call that only changes the route of an existing trip, leaving `days` out keeps the saved itinerary untouched, which is usually what is wanted; the result echoes whatever is saved either way."
      • changedInput schema / properties / id / description
        Previous value: -"Optional. Id of a trip returned by an earlier call, identifying which trip this call applies to. To change an existing trip, send its `id` together with the COMPLETE new `stops` and `days` — the call replaces the itinerary rather than merging into it, and there are no partial updates. The map link then stays the same, and edits the traveller made on the map survive: a re-sent stop keeps the position they dragged it to, and stops or waypoints they added on the map but absent from `stops` are kept, while a stop that was there before and is now omitted is removed. Without an `id` a separate new trip is created and none of those map edits carry over. Sending `id` with no `stops` is also accepted and changes nothing — it returns the trip exactly as saved."New value: +"Optional. Id of a trip returned by an earlier call, identifying which trip this call applies to. To change an existing trip, send its `id` together with the COMPLETE new `stops` and `days`; there are no partial updates. The map link then stays the same, and edits the traveller made on the map survive. Stops: a re-sent stop keeps the position they dragged it to, stops or waypoints they added on the map but absent from `stops` are kept, and a stop that was there before and is now omitted is removed. Activities: a re-sent one keeps its identity and the place, price and booking it carries on the map, which this tool does not report and so cannot be sent back; an activity the traveller added themselves is kept whether or not it appears here; one this tool showed earlier and now omitted is removed. Without an `id` a separate new trip is created and none of that carries over. Sending `id` with no `stops` is also accepted and changes nothing — it returns the trip exactly as saved."

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources