Skip to main content
Glama

Cadourile.ro

create_gift_list

Creează o listă de cadouri nouă.

Args:
    name: Numele listei (obligatoriu).
    description: Descriere opțională.
    is_public: Dacă lista e vizibilă public.
    is_event_with_guests: True pentru evenimente cu invitați (nuntă, botez, petrecere).
    event_type: Tip eveniment — 'birthday_child', 'baptism', 'wedding', 'anniversary',
        'business_dinner', 'other'.
    event_time: Data/ora evenimentului, format ISO 8601 (ex. '2026-10-15T18:00:00').
    event_location: Locația evenimentului.
    rsvp_deadline: Termen limită RSVP, format ISO 8601.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
is_publicNo
event_timeNo
event_typeNo
descriptionNo
rsvp_deadlineNo
event_locationNo
is_event_with_guestsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure, and it only explains parameter meanings. It does not state what the operation returns, whether it is idempotent, what side effects occur for event-type fields, or how failures manifest. For a creation tool with event-related behavior, this is a significant transparency gap.

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 one-line purpose statement is front-loaded, followed by a clean, alphabetically-ordered Args list where every line earns its place by adding format, enum, or requiredness information. No filler or repetition. Minor deduction for the Romanian-language description in an otherwise English context, which slightly reduces scannability.

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?

Parameter documentation is thorough, but the operational context is incomplete for an 8-param creation tool with event semantics. Missing elements include the return value, whether the created list is immediately usable, and how is_event_with_guests interacts with other event fields. The description covers the 'what the parameters mean' layer well but leaves behavioral and response aspects undocumented.

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

Parameters5/5

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

Schema coverage is 0%, and the description fully compensates. It documents all 8 parameters with meaningful semantics: name is marked obligatory, event_type lists all six allowed values, and both event_time and rsvp_deadline specify the ISO 8601 format with an example. This is exactly the value the schema fails to provide.

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 states a specific verb and resource: 'Creează o listă de cadouri nouă' (Creates a new gift list). This clearly distinguishes it from sibling tools like create_gift (creates a gift, not a list) and update_gift_list (updates, not creates). However, it does not explicitly name or contrast against these siblings — the differentiation is implicit in the resource noun.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. There is no mention of when to choose create_gift_list over create_gift, nor any exclusion criteria. The Args section documents parameters but offers no decision context, leaving the agent to infer usage purely from the tool name.

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.

Resources