Skip to main content
Glama
gohluke

Dayze MCP

by gohluke

Log Travel

log_travel

Record a trip or residence in your life-in-days history, with optional calendar event. Use for travel entries that should appear on maps and timelines.

Instructions

MUTATES trips (+ optional calendar travel event). Prefer this over free-text log_event for map/history. Required: city + start_date. Optional: country, end_date, kind (trip|residence|soft_pin), confidence (confirmed|likely|possible), evidence, title, mirror_event. Soft pins default to status=possible and stay off cities/map until confidence=confirmed. Zelle/Venmo money belongs in log_transaction — not here. ($0.10; API key required)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYes
dateNoAlias for start_date
kindNo
titleNo
countryNo
end_dateNo
evidenceNoSource note (Gmail id, address, etc.)
confidenceNo
request_idNoClient idempotency key (retries return original result).
start_dateNoYYYY-MM-DD
mirror_eventNoAlso insert category=travel calendar event (default true)
idempotency_keyNoAlias for request_id.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNo
noteNo
tripNo
messageNo
event_idNo
confidenceNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.28.0

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare the write/non-destructive/closed-world profile, but the description adds real behavioral context beyond them: soft_pin defaulting to status=possible and staying off cities/map until confirmed, the optional mirror calendar event, the $0.10 cost, and the API-key requirement. Return format is not described, but an output schema exists to cover it.

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?

Front-loads the mutation fact and the routing preference before enumerating parameters and edge cases; the compressed, clause-heavy style is efficient though dense. Nearly every sentence carries actionable 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?

For a mutation tool with 12 parameters, an output schema, and existing annotations, the description covers routing, required/optional inputs, special-case semantics, cost, and auth. Nothing an agent needs to call 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?

With only 50% schema description coverage, the description compensates by listing required (city + start_date) and optional fields and explaining the meaning of the kind and confidence enums and mirror_event's role. It omits the date/idempotency_key aliases and request_id, and its 'Required: city + start_date' slightly conflicts with the schema listing only city as required, but overall semantic value is well above the schema alone.

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?

States a specific verb (MUTATES trips) plus the optional calendar side effect, so the resource and scope are unambiguous. It explicitly names sibling tools (log_event, log_transaction) it should be preferred over or kept separate from, letting an agent distinguish it without opening the schema.

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?

Gives explicit routing: 'Prefer this over free-text log_event for map/history' and 'Zelle/Venmo money belongs in log_transaction — not here.' Both the positive condition and the exclusion are stated, leaving nothing to inference.

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

Deploy Server

Other Tools