Skip to main content
Glama

vibo_invite_users

Invite people to an event by email as host or guest. Requires confirmation to send; otherwise, returns a preview.

Instructions

Invite people to an event by email (as host or guest). Confirm-gated.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesPersonal message included in the invite.
typeYesInvite as host or guest.
emailsYesEmail addresses to invite.
confirmNoMust be true to proceed. Without this, the tool returns a preview.
eventIdYesEvent id.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.8.1
    • changedInput schema / properties / emails / items / pattern
      Previous value: -"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"New value: +"^(?:[A-Za-z0-9_'+\\-]+\\.)*[A-Za-z0-9_'+\\-]*[A-Za-z0-9_+-]@(?:[A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"
  2. Addedv1.5.3
  3. Removedv1.4.3
  4. First observedv1.3.1

TDQS

A4.2/5.0
Behavior4/5

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

Annotations only declare readOnlyHint=false; the description goes a step further by flagging that the operation is 'Confirm-gated,' which tells the agent a confirmation token is required before the invite is sent. It stays consistent with the mutable nature of the tool and adds useful non-obvious behavior.

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 short sentences—first states the action and scope, second adds the key behavioral caveat. Every word earns its place and the most decision-relevant information is front-loaded.

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 five-parameter mutation with a complete schema and no output schema, the description plus annotations cover what an agent needs to select and invoke it: purpose, role dimension, and the confirmation gate. It does not describe response/error behavior, but no output schema exists and the schema already covers the preview case.

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 the input schema already explains eventId, type, text, emails, and confirm. The description's mention of email, host/guest, and confirm-gating mirrors the schema rather than adding new parameter-level meaning, which meets but does not exceed the baseline.

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 names a specific action ('Invite'), a clear resource ('people to an event'), the delivery channel ('by email'), and role scope ('as host or guest'). This is immediately distinguishable from sibling tools like vibo_join_event, vibo_change_user_role, and vibo_remove_user.

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 phrase 'Invite people to an event by email' establishes a clear use case, and the host/guest distinction clarifies what the type parameter is for. It does not explicitly name alternatives or exclusions, but no other sibling tool covers email invitations, so the routing context is sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.