Skip to main content
Glama

Server Details

Turn a trip planned in conversation into a private, editable map link you hand the person.

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
Repository
peterbartsch/thistripbtw-mcp
GitHub Stars
0
Server Listing
thistripbtw-mcp

TDQS

A4.6/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a distinct operation and link type: build/amend/read for draft links, read/add for kept trips, and find_place for geocoding. The draft-vs-kept distinction is clearly spelled out in the descriptions, so an agent should not misselect.

Naming Consistency5/5

All six tools use a uniform snake_case verb-first convention: build_trip_link, amend_trip_link, read_trip_link, read_kept_trip, add_to_kept_trip, and find_place. The pattern is predictable and easy to scan.

Tool Count5/5

Six tools is well-scoped for a trip-link domain: creation, modification, reading both link types, and place resolution. There are no redundant or filler tools, and nothing important feels missing at the count level.

Completeness4/5

Draft trips have build/read/amend coverage, kept trips can be read and extended, and find_place fills the coordinate requirement. The main gaps are the absence of a general update/remove path for kept trips and no explicit draft-to-kept conversion, but agents can work around most user requests.

Available Tools

6 tools
add_to_kept_tripAInspect

Add a stop to a trip the person has KEPT (a link with #k=), on their behalf. Use when they say 'add X to the trip', 'we're stopping at Y on the way', 'put the hotel on it'. Needs their EDIT phrase — a view phrase can read but not write, and the tool says so. Writes exactly one stop and returns the trip's current stop count. Like read_kept_trip this touches the network: the #k= phrase is the password and it goes to thistripbtw.us over TLS, nothing is stored about you, and a wrong phrase counts as a guess. Treat the link as a credential.

ParametersJSON Schema
NameRequiredDescriptionDefault
linkYesThe kept trip's link with its #k= EDIT phrase.
stopYesThe stop to add.

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden, and it delivers: it discloses that the tool writes exactly one stop, returns the current stop count, touches the network over TLS, treats the #k= phrase as a password/credential, stores nothing about the user, and counts a wrong phrase as a guess. This goes far beyond what the schema or annotations could convey and is critical for an agent handling a credential-bearing link.

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

Conciseness5/5

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

The description is dense but every sentence earns its place: intent examples, credential warning, network behavior, and a pointer to the sibling tool. It front-loads the core action and the critical credential requirement before the security context. No fluff or repetition of schema details.

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?

For a 2-parameter tool with a nested object and no output schema, the description covers the essential context: when to use it, the credential requirement, the network/security implications, the single-write behavior, and the return value (current stop count). The only thing an agent might want is the exact response shape, but the description already states the stop count, and the schema covers the parameters. This is complete for safe and correct invocation.

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

Parameters4/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 meaningful context: it clarifies that the link must contain the #k= EDIT phrase (not just any link), and that the stop object is the thing being written. It also references read_kept_trip for the track field's naming. The only minor gap is that it doesn't explain the lat/lng format, but the schema already describes the fields, so this is above baseline.

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 specific verb and resource ('Add a stop to a trip the person has KEPT'), and immediately distinguishes this from read-only siblings by naming the credential requirement. It also gives concrete example phrasings ('add X to the trip', 'we're stopping at Y on the way') that an agent can match against user intent. This is clearly differentiated from read_kept_trip and read_trip_link.

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 explicitly states when to use it ('Use when they say...') and provides the key exclusion: a view phrase can read but not write, so this tool requires the EDIT phrase. It also names the sibling read_kept_trip as the source for the track parameter and for reading the trip, which routes the agent correctly. This is exemplary usage guidance.

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

find_placeAInspect

Turn a place name into coordinates for build_trip_link — towns, cities, airports (IATA or name), parks, trailheads. Returns up to six candidates with lat/lng and where each one is, so you can pick the right Reno. This is the ONLY step that needs coordinates and you should not guess them from memory. It asks thistripbtw.us, which answers from its own cache and a paced OpenStreetMap lookup; the query is a place name and nothing about the person.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesThe place as a person would say it: "Moab, UT", "SFO", "Arches National Park".

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations, the description carries full burden and tells the agent the candidate count, the returned fields (lat/lng plus location label), the backend service, cache/OSM behavior, and that the query is limited to a place name with no personal data. This is rich behavioral disclosure for a small tool.

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

Conciseness5/5

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

All sentences serve a purpose: purpose, candidate output, use-rule, and backend/privacy note. The purpose is front-loaded and no sentence is filler.

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?

For a one-parameter tool with no output schema, the description covers inputs, output shape, disambiguation behavior, and a usage rule. Nothing an agent needs to invoke it correctly is missing.

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

Parameters4/5

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

The single parameter is already documented in the schema with examples, so the baseline is 3. The description adds accepted input categories (parks, trailheads, IATA or name) and the disambiguation intent, going modestly beyond the schema.

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 specific verb and resource — 'Turn a place name into coordinates' — and enumerates accepted place types. It also names build_trip_link as the consumer, which separates it from the sibling trip-link and kept-trip tools. The 'Reno' example clarifies that the tool does disambiguation, not just lookup.

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?

It explicitly positions this as 'the ONLY step that needs coordinates' and warns not to guess coordinates from memory, giving an unambiguous when-to-use rule. It names build_trip_link as the downstream tool and provides no misleading alternatives. This is stronger than a general context hint.

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

read_kept_tripAInspect

Use when someone gives you a KEPT this trip, btw link — one that looks like https://thistripbtw.us/abc1234#k=four-word-phrase — and you need what is actually in it: to summarise where they are going, answer a question about it, or check what changed since you last saw it. Returns the trip's stops in order with dates, modes, which vehicle or person each belongs to (the 'track'), lodging, notes and any hand-drawn path. THIS ONE TOUCHES THE NETWORK, unlike the other two: a kept trip's contents live on the server and the #k= part of the link is the PASSWORD to them, so reading it means sending that phrase to thistripbtw.us over TLS. Nothing is stored and no account is involved. Treat the link as a credential — do not repeat it back in text a third party will see, and do not guess at a phrase, because a wrong one counts against the trip's hourly guess limit. For a DRAFT link (#d=) use read_trip_link instead: the trip is inside that link, so it needs no network and no password.

ParametersJSON Schema
NameRequiredDescriptionDefault
linkYesThe kept trip's link, e.g. https://thistripbtw.us/abc1234#k=treeline-downpour-rolling-switchback. The whole URL is fine.

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description carries full burden. It discloses network access ('THIS ONE TOUCHES THE NETWORK'), TLS usage, password semantics of the #k= phrase, credential handling, rate-limit consequences for wrong guesses, and that nothing is stored. This goes far beyond basic read/write hints.

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 every sentence adds necessary context—use case, return contents, network behavior, credential handling, and sibling differentiation. It is front-loaded with the primary purpose. A slight structural improvement (e.g., separating cautions) would earn a 5, but it remains efficient for the amount of critical information.

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?

Given no output schema, the description fully explains return values (stops with dates, modes, track, lodging, notes, hand-drawn path). It also covers network, security, and alternatives, making it complete for a tool with inherent complexity around credentials and remote access.

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

Parameters4/5

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

The schema already covers the single parameter well (100% coverage), so baseline is 3. The description adds meaningful context: the #k= part is a password, the link must be sent over TLS, and the phrase should not be repeated or guessed. This enriches the parameter's meaning beyond its type/format.

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 specific use case ('Use when someone gives you a KEPT this trip, btw link') and states exactly what the tool does: retrieve the trip's contents for summarization, questions, or change checks. It explicitly contrasts with read_trip_link for draft links, distinguishing the tool from its sibling.

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?

It clearly states when to use this tool (for kept links) and when to use the alternative ('For a DRAFT link (#d=) use read_trip_link instead'), plus why (network vs. no network). This is explicit guidance with exclusions and an alternative named.

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.

  1. 3 tool updates
    • Addedadd_to_kept_trip
    • Addedamend_trip_link
    • Addedfind_place
  2. 1 tool update
    • Addedread_kept_trip
  3. 1 tool update
    • Addedread_trip_link
  4. 1 tool update
    • First observedbuild_trip_link

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables creation of short links, dynamic QR codes, UTM templates, and hosted vCards with click/scan analytics through natural language conversations.
    42
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.