Skip to main content
Glama

Dayze — Life Context

Create Person

create_person

Add a CRM contact; checks duplicates first. ($0.10; API key required)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
tierNo
emailNo
notesNo
phoneNo
aliasesNo
request_idNoClient idempotency key (retries return original result).
relationshipNo
idempotency_keyNoAlias for request_id.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
personNoCRM person record.
createdNo
messageNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / idempotency_key
      Added value: +{
      +  "description": "Alias for request_id.",
      +  "type": "string"
      +}
    • addedInput schema / properties / request_id
      Added value: +{
      +  "description": "Client idempotency key (retries return original result).",
      +  "type": "string"
      +}
  2. Added

TDQS

A4/5.0
Behavior4/5

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

Beyond the annotations, it discloses a duplicate check, a $0.10 cost, and an API key requirement. It does not specify the outcome when a duplicate is found (error vs no-op), but still adds material behavioral context not present in annotations or schema.

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?

One efficient sentence with essential business constraints appended parenthetically. The main action is front-loaded, and every clause adds value.

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

Completeness3/5

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

Output schema covers return values and annotations cover basic mutability, so the description need not explain those. However, it omits what happens on duplicate detection and does not clarify parameter semantics (especially tier/relationship), leaving moderate gaps for an agent to hit errors on alternative paths.

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

Parameters2/5

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

Schema description coverage is only 22% (just request_id/idempotency_key), and the description lists no parameter details. An agent must infer the meaning of tier, relationship, and aliases from names alone, which is risky for a 9-parameter creation tool.

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 'Add' and resource 'CRM contact', and adds unique behavioral cue 'checks duplicates first'. This clearly distinguishes it from update_person, merge_people, and read-only lookup 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?

The description clearly frames the tool as the way to create a new CRM contact, and the duplicate-check note implies it is the entry point before considering update or merge operations. It does not explicitly name alternatives or exclusion conditions, but the context is sufficient for an agent to select it for creation.

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.