Skip to main content
Glama

create_event_team

Establish a named team for an event to organize members and assign responsibilities.

Instructions

Create a new team for an event.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
event_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral disclosure burden. It only states the creation action without mentioning side effects, error conditions, uniqueness constraints, or permissions. For a mutation tool with zero annotation support, this is insufficient.

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 a single, front-loaded sentence with no wasted words. It efficiently communicates the action and the object while remaining easy to parse.

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?

The tool is relatively simple with only two required parameters and an output schema, so the description is adequate for basic invocation. However, it lacks parameter-level detail and behavioral context, leaving gaps around prerequisites and failure modes. It meets the minimum viable standard but no more.

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 0%, and the description does not explain either parameter. 'For an event' loosely maps to event_id, but there is no additional meaning about name format, uniqueness, or how the team relates to the event. The description adds minimal value beyond the schema property titles.

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 states a specific verb ('Create'), a specific resource ('team'), and the context ('for an event'). This clearly distinguishes it from sibling read tools like list_event_teams and get_event_team, so an agent can identify the tool's purpose without opening the schema.

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 verb 'Create' implies when to use this tool, and naming the resource 'team' provides some context. However, there is no explicit guidance about when not to use it, prerequisites (e.g., event must exist), or alternatives such as list_event_teams or get_event_team. The usage is merely implied, not stated.

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