Skip to main content
Glama
beel-es

BeeL MCP server

Official
by beel-es

beel_get_invitation

Read-onlyIdempotent

Retrieve a single invitation's status and details by its ID from an account. Returns accepted, revoked, or expired invitations to preserve the audit trail of who accessed fiscal data.

Instructions

Returns one invitation of the account, with the same shape the list returns. An invitation stays readable for its whole life: ACCEPTED, REVOKED and EXPIRED ones are returned with their status, because the record is the trail of who was granted access to the account's fiscal data and revoking it does not erase it.

Endpoint: GET /v1/accounts/{account_id}/invitations/{invitation_id}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
account_idYesYour own account, or an account you provisioned. It — not the credential — decides which account the operation acts on; a `403` is returned when you do not reach it, the same response an account that does not exist gets.
invitation_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.5.0
    • addedInput schema / additionalProperties
      Added value: +false
  2. First observedv0.3.1

TDQS

A4.1/5.0
Behavior5/5

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

Beyond the readOnly/idempotent annotations, the description discloses a non-obvious lifecycle behavior: ACCEPTED, REVOKED and EXPIRED invitations remain readable and keep their status, because revocation does not erase the record. This tells the agent not to expect a 404 for revoked invitations and explains why the resource persists.

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 compact and front-loaded: the core behavior appears in the first sentence, followed by the essential lifecycle caveat and the endpoint. Every sentence earns its place with no redundancy.

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 read operation, the description covers the operation, the non-obvious status behavior, and the exact endpoint. It references the list shape for return structure and the schema covers error semantics for account_id, though invitation-specific error responses and output fields are not spelled out.

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?

The schema already documents account_id thoroughly, but invitation_id has no schema description and the description adds no parameter-level detail. With only 50% schema coverage, the description does not compensate for the undocumented invitation_id parameter; the endpoint placeholders add no semantic value.

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 ('Returns'), a precise resource ('one invitation of the account'), and clarifies that its shape is the same as the list endpoint. This distinguishes it from sibling tools such as beel_list_invitations and beel_create_invitation without opening any schemas.

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 clearly implies this is the single-item retrieval counterpart to listing invitations, but it never explicitly says when to prefer it over beel_list_invitations or what conditions rule it out. The endpoint and 'one invitation' wording provide context, yet the guidance is left to inference rather than 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