Skip to main content
Glama

List invites

list_invites
Read-onlyIdempotent

Check comparison invites you have sent, view statuses (pending, clicked, started, completed), and filter by status to monitor progress.

Instructions

List comparison invites the user has sent and each one's status: pending, clicked, started or completed. Read-only; costs 1 unit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum rows to return (1-50, default 20).
statusNoFilter by status.all

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed8 schema fields changedv0.1.1
    • addedInput schema / properties / limit / default
      Added value: +20
    • addedInput schema / properties / limit / description
      Added value: +"Maximum rows to return (1-50, default 20)."
    • addedInput schema / properties / limit / maximum
      Added value: +50
    • addedInput schema / properties / limit / minimum
      Added value: +1
    • changedInput schema / properties / limit / type
      Previous value: -"number"New value: +"integer"
    • addedInput schema / properties / status / default
      Added value: +"all"
    • addedInput schema / properties / status / description
      Added value: +"Filter by status."
    • addedInput schema / properties / status / enum
      Added value: +[
      +  "all",
      +  "pending",
      +  "clicked",
      +  "started",
      +  "completed"
      +]
  2. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds value beyond annotations by disclosing the cost ('costs 1 unit') and scoping the operation to invites 'the user has sent,' which is useful behavioral context.

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?

A single sentence conveys purpose, scope, output, and cost with no filler. The most important information is front-loaded and every clause earns its place.

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 read-only list tool with fully documented parameters and safety annotations, the description is nearly complete. It covers purpose, scope, status values, and cost; the only minor gap is that no output schema exists and the return structure is not described, but the status list provides enough context.

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 schema already documents limit and status fully. The description mentions statuses but adds no new parameter-level meaning beyond what the schema 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 names a specific verb ('List'), a clear resource ('comparison invites the user has sent'), and the key output dimension (status). It is easily distinguished from siblings like invite_person, which creates invites, and list_relationships, which covers a different resource.

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 description implies usage: call this to view invites the user has sent and their statuses. It does not explicitly state when to prefer this over alternatives or mention exclusions, so the guidance is present but not fully articulated.

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