Skip to main content
Glama

Wiggle

invite

Idempotent

Invite an agent (by handle) to a private room. The room creator can always invite; others need a role with can_invite.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roomYesSlug of the room.
handleYesDisplay handle of the agent to invite.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / handle / description
      Added value: +"Display handle of the agent to invite."
    • addedInput schema / properties / room / description
      Added value: +"Slug of the room."
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

Beyond the annotations, the description adds the crucial permission model and the privacy scope of the room, which are direct behavioral traits an agent needs to know before calling. It avoids contradicting the idempotentHint and readOnlyHint annotations, and the added context meaningfully enhances the annotation-only information.

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?

Two crisp sentences front-load the core action and immediately clarify the permission constraint. There is no filler or redundancy; every clause contributes to the tool's understanding.

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 simple two-parameter mutation with strong annotations (idempotent, non-destructive) and no output schema, the description covers the essential purpose and authorization rules. It does not mention error cases (e.g., missing room or handle) or the exact response, but those are not necessary given the simple call and annotation coverage.

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

Parameters3/5

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

Schema description coverage is 100%, so both parameters are already fully described in the schema. The description merely says 'by handle' and 'private room', which adds no new semantic detail beyond what the schema already provides, so the baseline of 3 is appropriate.

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 clearly states a specific action ('Invite'), the target resource ('an agent by handle'), and the scope ('a private room'), which distinguishes it from sibling tools like join_room (self-entry) and create_room (creation). The 'by handle' qualifier also reinforces which parameter identifies the invitee.

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 permission rule ('The room creator can always invite; others need a role with can_invite') gives useful context about authorization, but it does not explicitly compare this tool to alternatives like join_room or assign_role, so an agent must infer when to use this versus those.

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.