Skip to main content
Glama
beel-es

BeeL MCP server

Official
by beel-es

beel_list_products

Read-onlyIdempotent

Retrieve a paginated list of a company's products and services. Filter by name, code, category, price, active status, and sort results.

Instructions

Returns a paginated list of the products/services of this company, with optional filters.

  • q: searching is done on this collection, there is no separate search path. q matches the name, the code and the description, so it returns at least everything the withdrawn GET /v1/products/search returned, in the paginated envelope of this list.

Endpoint: GET /v1/companies/{company_id}/products

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qNoSearch by name, code or description
codeNoFilter by code (partial search)
nameNoFilter by name (partial search case-insensitive)
pageNoPage number, starting at 1. The response echoes it back as `pagination.current_page`.
limitNoHow many items to return per page. The response echoes it back as `pagination.items_per_page`.
activeNoFilter by active/inactive status
sort_byNoField to sort byname
categoryNoFilter by product category
max_priceNoMaximum price
min_priceNoMinimum price
company_idYesUnique identifier (UUID) of the company the operation acts on — its identifier, not its NIF. It is the only source of context: the account that owns it is derived from it, and the `BeeL-Active-Company` header plays no part. A company you do not reach answers `403`, and so does a company that does not exist, so the existence of a company in another account is never disclosed.
sort_orderNoSort order directionasc

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changedv0.5.0
    • removedInput schema / $defs / ProductCategory / example
      Removed value: -"CONSULTING"
    • removedInput schema / $defs / ProductSortBy / example
      Removed value: -"name"
    • removedInput schema / $defs / SortOrder / example
      Removed value: -"desc"
    • addedInput schema / additionalProperties
      Added value: +false
    • changedInput schema / properties / company_id / description
      Previous value: -"NIF (company) the operation acts on. It is the only source of context: the account that owns it is derived from it, and the `BeeL-Active-Company` header plays no part. A NIF you do not reach answers `403`, and so does a NIF that does not exist, so the existence of a NIF in another account is never disclosed."New value: +"Unique identifier (UUID) of the company the operation acts on — its identifier, not its NIF. It is the only source of context: the account that owns it is derived from it, and the `BeeL-Active-Company` header plays no part. A company you do not reach answers `403`, and so does a company that does not exist, so the existence of a company in another account is never disclosed."
  2. First observedv0.3.1

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, and non-destructive behavior. The description adds useful behavioral context beyond annotations: pagination, the q matching fields, and the relationship to the withdrawn /products/search endpoint. No contradictions 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 compact and front-loaded: the main purpose is stated first, followed by a single focused note about q. The endpoint line is useful orientation rather than filler. Every sentence 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 12-parameter list endpoint, the schema plus annotations carry most of the load, and the description adds the key q/search behavior and pagination context. There is no output schema, so a more explicit statement of the response envelope could have been included, but the pagination behavior is sufficiently described.

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?

Schema description coverage is 100%, so the schema already documents every parameter thoroughly. The description adds extra value specifically for q: it clarifies that q replaces the removed search path and matches name/code/description. That goes beyond the schema's own q description.

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 opens with a specific verb and resource: 'Returns a paginated list of the products/services of this company'. It clearly distinguishes this collection-style tool from singular operations like get_product and from other list_* siblings, and even specifies the endpoint.

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 explicitly tells agents that searching is done through this same endpoint via q, and that there is no separate search path — good routing guidance. It does not explicitly name sibling alternatives like beel_get_product for single-item retrieval, but the context strongly implies the intended use case.

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