Skip to main content
Glama

cakto_offers_get

Read-onlyIdempotent

Leitura de ofertas na Cakto. A oferta é a unidade de PREÇO de um produto (cada produto nasce com uma oferta padrão) e é o alvo de um order bump — um bump aponta para uma OFERTA, nunca para o produto direto. Ações:

  • list: lista ofertas (filtros: product, status, type, search, ordering, limit, page).

  • get: detalhe de UMA oferta (requer offer_id).

[Flattened action: get]

Bulk support: accepts offer_ids for batched execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
typeNo
limitNo
searchNo
statusNo
accountNo
productNo
offer_idNo
orderingNo
offer_idsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, and the description aligns by saying 'Leitura de ofertas'. It adds useful behavioral context beyond annotations: the concept of an offer as a price unit and order-bump target, plus bulk execution support.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well organized: a one-line purpose, a brief domain concept explanation, and bulleted actions. It is not overly verbose, and every part adds context, though the list-action section is somewhat redundant given the flattened-get framing and sibling list tool.

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

Completeness3/5

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

For a read tool with 10 optional-looking schema parameters and no output schema, the description covers the main use cases and bulk behavior. It leaves gaps: the relationship between get/list is muddled, the account parameter is undocumented, and the response shape is not 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 0%, so the description must carry parameter meaning. It maps most parameters to their roles: product, status, type, search, ordering, limit, and page for filtering; offer_id for single detail; offer_ids for bulk. It omits the 'account' parameter and doesn't explain enum values, but it compensates reasonably for the schema's lack of descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool reads Cakto offers and clearly identifies the get action as retrieving details of ONE offer requiring offer_id, with bulk support via offer_ids. It distinguishes single-offer retrieval from listing, though it also documents the list action and there is a sibling cakto_offers_list, which introduces some ambiguity.

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 the get path should be used when offer_id is available and says offer_ids are accepted for batch execution, giving some contextual guidance. However, it never explicitly says 'use cakto_offers_list for listing/searching' and actually lists list-related filters even though the tool is flattened to the get action.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.