Skip to main content
Glama
gohluke

Dayze MCP

by gohluke

Log Place Visit

log_place_visit

Record a place visit with arrival time and optional departure, address, and source to track location history or attach evidence to expenses.

Instructions

MUTATES place_visits for map/history digs (Uber dropoff, address evidence). Required: place (or place_id) + arrived_at/date. Optional: departed_at, source (uber|mcp|…), evidence_expense_id (idempotent), city/country/address. Prefer this over stuffing streets only into expenses. ($0.10; API key required)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNo
dateNoAlias for arrived_at
nameNoAlias for place
placeNo
sourceNo
addressNo
countryNo
place_idNo
arrived_atNoISO or YYYY-MM-DD
confidenceNo
request_idNoClient idempotency key (retries return original result).
departed_atNo
idempotency_keyNoAlias for request_id.
evidence_event_idNo
evidence_expense_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
placeNoCanonical place record.
visitNoNormalized place visit.
messageNo
place_idNo
duplicateNo
created_placeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.28.0

TDQS

A4/5.0
Behavior4/5

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

Annotations confirm readOnlyHint=false, so 'MUTATES' is consistent and the description adds real operational context: required fields, aliases, idempotency behavior for evidence_expense_id, and cost/auth ('$0.10; API key required'). Those cost and auth details are the kind of info annotations cannot carry. It stops at 4 because it doesn't say what happens on conflict or what the output returns.

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?

Single dense sentence: mutation + scope + required/optional params + steering + cost/auth, all front-loaded. No filler; every clause carries an instruction.

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

Completeness4/5

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

Given an output schema exists, the description need not explain returns, and it covers mutation, required params, aliases, idempotency, and cost. It is nearly complete for invocation, though full parameter semantics for the remaining untyped params are still absent on both sides.

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

Parameters3/5

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

Schema coverage is only 33% (15 params, most undocumented), so the schema gets a 3 baseline and the description must compensate. It does list required vs optional fields, alias relationships (date/arrived_at, name/place, idempotency_key/request_id), and enum-ish source values (uber|mcp), which adds usable meaning. But several parameters (confidence, evidence_event_id, request_id) are left to the schema, so it only partially closes the gap.

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

Purpose4/5

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

The description names a specific verb+resource ('MUTATES place_visits') and gives concrete examples of what qualifies (Uber dropoff, address evidence), which distinguishes it from read siblings like get_place_visits. It does not explicitly name the mutation alternative it replaces (e.g., 'use instead of log_event for location records'), so it stops short of 5.

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

Usage Guidelines4/5

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

It gives a clear positive criterion (map/history digs) and one explicit steering rule: 'Prefer this over stuffing streets only into expenses,' which routes the agent away from a plausible wrong sibling. The condition is implied rather than fully spelled out with when-not-to-use cases.

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