Skip to main content
Glama
beel-es

BeeL MCP server

Official
by beel-es

beel_list_invoice_customization_options

Read-onlyIdempotent

Lists every available invoice PDF template option, providing the template_type code and localized name/description. Use it to choose the right template code when customizing an invoice.

Instructions

Returns the PDF templates a NIF can be rendered with. For each one, the code to send as template_type in PUT /v1/companies/{company_id}/invoice-customization, plus a name and a short description translated into the language of the user the credential belongs to.

The accepted values are already in the template_type enum; what this operation adds are the readable labels, so you do not have to show MODERN_TABLE to a person. The catalogue is identical for every account and every NIF, so it is not nested under one.

Closed catalogue. This collection is fixed and bounded: it carries no pagination, it takes no page/limit, and every response holds the whole set.

Endpoint: GET /v1/invoice-customization-options

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

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.7/5.0
Behavior5/5

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

Annotations already mark this as read-only, idempotent, and non-destructive. The description adds meaningful behavior beyond that: the catalogue is fixed and bounded, has no pagination, takes no page/limit, is identical across accounts and NIFs, and includes localized labels. No contradiction with annotations.

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 front-loaded with the core purpose, then adds one concise use-case note, a closed-catalogue caveat, and the endpoint. Every sentence carries useful information without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no parameters and no output schema, the description fully covers what an agent needs: what is returned, how the values connect to other operations, response characteristics such as no pagination and fixed size, and the endpoint. Nothing critical is missing.

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

Parameters4/5

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

There are zero parameters and schema coverage is 100%, so there is nothing the description must document. It even adds the useful clarification that page/limit are not accepted.

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 that the tool returns PDF templates available for a NIF and explains what each returned item contains (code, name, translated description). It also differentiates itself from related operations by clarifying that it adds readable labels instead of raw enum values.

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 description gives useful context: use this to get human-readable labels for template_type values rather than showing raw enum codes. It ties the returned `code` to the PUT invoice-customization endpoint, making the intended use clear, though it does not explicitly name sibling alternatives.

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