Skip to main content
Glama

guru_subscriptions_invoice

Read-onlyIdempotent

Assinaturas no Guru (leitura). Ações: search (filtros: subscription_status, product_id, contact_email/contact_doc/contact_name, started_at_ini/end, last_status_at_ini/end, cursor); get (id); activities (id); invoices (id); invoice (id + invoice_code); invoice_transactions (id + invoice_code); transactions (id); payment_types (id); plans_available (id).

[Flattened action: invoice]

Bulk support: accepts ids, product_ids for batched execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
idsNo
cursorNo
accountNo
product_idNo
contact_docNo
product_idsNo
contact_nameNo
invoice_codeNo
contact_emailNo
started_at_endNo
started_at_iniNo
last_status_at_endNo
last_status_at_iniNo
subscription_statusNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

C2.3/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds 'leitura' (read) which is redundant, but it does mention 'Bulk support: accepts ids, product_ids for batched execution'—a useful behavioral trait not in the annotations. However, it omits other behavioral details like pagination behavior, rate limits, or what happens when multiple actions are implied, so it adds only some value beyond the annotations.

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

Conciseness3/5

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

The description is dense and relatively concise, packing many actions and filter names into a single paragraph. However, it is not well front-loaded: the first phrase 'Assinaturas no Guru (leitura)' is broad and the action list is a run-on structure with semicolons. It attempts to convey a lot but sacrifices clarity, making it hard to parse. A clearer structure with separated action definitions would improve readability.

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

Completeness2/5

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

This tool has 15 parameters, no output schema, and a complex multi-action behavior. The description provides only a partial map of actions to parameters and does not explain the tool's default behavior, how the flattened action works, or what the return values look like. The presence of many sibling tools that seem to overlap makes the description even less complete for an agent to select and invoke the tool correctly.

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 has 15 parameters with 0% description coverage, so the description must compensate. The description does map some parameters to actions (e.g., 'search (filtros: subscription_status, product_id, contact_email/contact_doc/contact_name, started_at_ini/end, last_status_at_ini/end, cursor)'), but many parameters like 'account', 'product_ids', 'ids', and 'invoice_code' are only mentioned in passing. The description doesn't fully explain the meaning of each parameter or how they interact with the different actions, leaving the agent uncertain about which parameters are relevant for which invocation.

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

Purpose2/5

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

The description states 'Subscriptions in Guru (read)' and lists multiple actions (search, get, activities, invoices, invoice, etc.), but it is unclear which action the tool is meant to perform given its name 'guru_subscriptions_invoice'. The 'Flattened action: invoice' hint is cryptic and doesn't clarify whether the tool is for invoice specifically or all subscription reads. It does not distinguish from sibling tools like guru_subscriptions_get or guru_subscriptions_search, which already cover specific actions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no explicit guidance on when to use this tool versus the many sibling tools. It lists actions and their required parameters, but does not explain which action to choose in which scenario, nor does it mention any exclusions or alternatives. For example, it doesn't say to use guru_subscriptions_search for search operations; instead it lists search as an internal action, implying this tool could replace the sibling, which is confusing.

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.

TDQS

C2.3/5.0
Disambiguation3/5

The tool names themselves are distinct (e.g., guru_subscriptions_get vs guru_subscriptions_activities), but the descriptions for each resource are identical except for a '[Flattened action: X]' tag, listing all possible actions. This repetition can confuse agents into selecting the wrong tool, especially since many tools share the same description body. The naming is clear but the descriptive overlap undermines disambiguation.

Naming Consistency4/5

The majority of tools follow a consistent pattern: guru_<resource>_<action> for reads and guru_<resource>_write_<action> for writes. However, there are outliers like 'authenticate', 'connect', 'marketplace', 'report_bug', etc., which break the pattern. Within the Guru API itself, the naming is highly predictable, but the occasional non-Guru tool reduces overall consistency.

Tool Count1/5

With 101 tools, the server is grossly over-scoped. The API has been fragmented into a separate tool for every action across many resources (e.g., subscriptions alone have 15+ tools). This is far beyond the typical MCP server size and makes the tool list overwhelming and impractical for agents to navigate. The extreme granularity offers no benefit over a smaller, well-organized set.

Completeness4/5

The tool set covers a wide range of operations: CRUD for contacts, subscriptions, transactions, products, coupons, webhooks, and more, including write actions like refunds, chargebacks, and subscription modifications. The domain appears well-covered, though some resources lack create operations (e.g., no create subscription) and there are a few gaps like missing explicit update for transactions. Overall, the coverage is thorough for the stated API surface.