Skip to main content
Glama
gohluke

Dayze MCP

by gohluke

Update Notable (catalog write)

update_notable

Update a notable person's existing profile by slug, patching fields such as bio, occupation, birth date, residence, and trivia. Only modifies records; no create or delete.

Instructions

MUTATES public notable_people. Superuser only. Patch by slug (bio, about, occupation, birth_place, birth_date, net_worth, residence, before_fame, trivia, family_life, zodiac, flag). Rejects unknown fields. No create/delete. Stamps last_updated_via=mcp. ($0.10; API key required)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bioNo
flagNo
slugYesNotable person slug (e.g. taylor-swift)
aboutNo
triviaNo
zodiacNo
net_worthNo
residenceNo
birth_dateNoYYYY, YYYY-MM, or YYYY-MM-DD. Null/empty clears
occupationNo
request_idNoClient idempotency key (retries return original result).
before_fameNo
birth_placeNo
family_lifeNo
idempotency_keyNoAlias for request_id.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
personYesUpdated notable catalog row (name, slug).
changedYesChanged fields with before and after values.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.28.0

TDQS

A4.5/5.0
Behavior5/5

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

Beyond annotations, it discloses that the operation mutates data, requires superuser privileges and an API key, rejects unknown fields, forbids create/delete, stamps last_updated_via=mcp, and costs $0.10. This gives an agent a clear behavioral and side-effect profile without contradicting the annotations.

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 well-ordered: mutation, scope, auth, operation type, allowed fields, validation behavior, side effect, and cost. Every clause adds decision-relevant information, and the core purpose is front-loaded.

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 the tool's 15 parameters and existing output schema, the description covers the critical invocation details: superuser-only access, API key requirement, slug-based patching, allowed field set, unknown-field rejection, no create/delete, and the last_updated_via stamp. An agent has enough context to call it correctly.

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 schema description coverage at only 27%, the description compensates by enumerating the exact patchable fields (bio, about, occupation, birth_place, birth_date, etc.) and by stating that unknown fields are rejected. It does not explain every field's meaning, but most names are self-descriptive, and schema descriptions cover birth_date and idempotency keys.

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 'MUTATES public notable_people', a specific verb and resource, then clarifies the operation is a patch by slug. It also excludes create/delete, which distinguishes this write tool from read-only notable siblings and from creation/deletion tools.

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

Usage Guidelines3/5

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

The description implies use for patching an existing notable person by slug and restricts to superusers, but it does not explicitly name alternatives or say when to choose this tool over notable_search, notable_profile, or create_person. 'No create/delete' is an exclusion, yet no positive routing guidance is given.

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