Skip to main content
Glama

Dayze — Life in Days + Notable People

Update Event (calendar patch)

update_event
Idempotent

MUTATES one existing calendar event the authenticated user owns. Required: event_id (UUID). Optional patch (same fields as log_event): title, date / event_date, time / event_time, end_date, end_time, location, description, category, external_url, people / with / person_ids. Unknown or other-user event_id returns an error and does not create a row. For food-diary meals, prefer update_food (it syncs the mirrored event). Rebuilds life_state. Requires API key or OAuth with scope context. Share tokens cannot write. ($0.10; API key required)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoAlias for event_date.
timeNoAlias for event_time.
withNoAlias for people.
titleNoUpdated title (replaces). Cannot be empty.
peopleNoPeople names or person UUIDs to add (event_people role=with). Does not remove existing tags.
categoryNoe.g. funeral, family, work, travel. Stored as events.category and event_type.
end_dateNoOptional end date YYYY-MM-DD (all-day multi-day).
end_timeNoOptional end time (same formats as event_time).
event_idYesUUID of a calendar event the authenticated user owns
locationNoEmpty or null clears
event_dateNoStart date YYYY-MM-DD. Alias: date.
event_timeNoStart time: 8pm, 20:00, or 20:00:00. Empty or null clears. Alias: time.
person_idsNoOwned person UUIDs to tag (user-scoped).
descriptionNoEmpty or null clears
person_nameNo
external_urlNo
people_namesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
eventYesA Dayze calendar event record.
changedYesChanged fields with before and after values.
people_taggedYes
unresolved_peopleYes
life_state_rebuiltYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false, destructiveHint=false, idempotentHint=true. The description adds that unknown or other-user event_id returns an error and does not create a row (consistent with idempotency), that it rebuilds life_state, and the cost/authentication constraints. It doesn't contradict annotations and provides useful extra behavior details, but doesn't go into return format or detailed side effects.

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 information-dense but well-structured: it leads with the mutation verb, required parameter, then optional patch duplicates, followed by error behavior, alternative tool, side effect, auth, and cost. Every sentence adds necessary context without redundancy. Slightly long but justified given the tool's complexity.

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?

For a tool with 17 parameters and existing annotations and output schema, the description covers the essential operational aspects: required event_id, optional fields, error semantics, alternative tool, lifecycle side effect, authentication, and cost. It doesn't explain the return value, but output schema exists. It's complete enough for an agent to call correctly without further research.

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 82% (high), so baseline is 3. The description adds value by consolidating the patchable fields, pointing to log_event for the full field list, and clarifying aliases (date/event_date, time/event_time, people/with/person_ids). It also notes that location, description, event_time are cleared on empty/null. This goes beyond the schema's individual field descriptions.

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 starts with 'MUTATES one existing calendar event the authenticated user owns', clearly stating the verb, resource, and ownership requirement. It lists the required event_id and the optional patchable fields, and explicitly distinguishes from log_event (creating new) and update_food (for meals). This is precise and differentiates well from siblings.

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 provides an explicit exclusion: 'For food-diary meals, prefer update_food (it syncs the mirrored event).' It also states prerequisites (API key or OAuth, share tokens cannot write) and the error behavior for unknown/other-user event_id. However, it doesn't explicitly contrast with log_event beyond implying update-vs-create, so a small gap remains.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.3/5.0
Disambiguation3/5

Most tools target distinct resources, but get_context_pack and get_life_context overlap heavily, and get_money_between_people is an intentional duplicate alias of get_person_transactions. The rest are mostly clear due to explicit descriptions.

Naming Consistency4/5

Naming is predominantly verb_noun snake_case with clear families (get_*, log_*, update_*, search_*, notable_*). Minor inconsistencies: create_person breaks the add_inventory_* pattern, and one-off verbs like record_, attach_, merge_ are not part of a uniform scheme.

Tool Count1/5

With 64 tools, this far exceeds the 50+ extreme threshold. The broad personal-life domain justifies many tools, but the count creates significant selection overhead and feels bloated, especially with redundant aliases and overlapping context pack variants.

Completeness4/5

The set covers inventory, CRM, events, food, expenses, travel, places, photos, Gmail, and notable-people lookup with strong read/write/search coverage. Minor gaps include no delete operations for events/people/food (only archive/update) and no explicit place creation.