Skip to main content
Glama

infra_billing_get_infra_billing_records

Retrieve paginated infrastructure billing history records using start and size parameters. Use it to review past charges for audits, reconciliation, or cost tracking.

Instructions

GET /api/infra-billing/history Get infra billing history Tags: Infra Billing Controller Пагинация через query-параметры: start, size.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sizeNoNumber of billing records to return, no more than 500
startNoStart index (offset) of the billing history records to return, default is 0

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are supplied, so the description carries the full behavioral burden. It implies a read via the GET route and mentions pagination, but says nothing about result volume, default/maximum sizes, ordering, or what a response contains, which is thin for an unannotated tool.

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 short and the purpose is front-loaded, but it wastes space on the raw HTTP endpoint and a boilerplate "Tags: Infra Billing Controller" line, and the trailing Russian sentence duplicates the schema's pagination info.

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-only list endpoint with no output schema, the definition covers the essentials: what it fetches and how to paginate. It stops short of describing default ordering or response shape, a very minor gap for this kind of endpoint.

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

Parameters3/5

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

Schema description coverage is 100%, so both start and size are already fully documented in the schema (including defaults and the 500 maximum). The description's Russian sentence about pagination merely repeats what the schema already states, adding no new semantics; the baseline of 3 applies.

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 gives a clear verb+resource ("Get infra billing history") and even names the underlying HTTP route, so an agent can tell it retrieves billing history records. However, it never distinguishes itself from nearby siblings such as infra_billing_get_billing_nodes or infra_billing_get_infra_providers, so the agent must infer the boundary from the name alone.

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?

There is no guidance on when to use this tool versus the many other infra_billing read tools, and no prerequisites are stated. The only actionable hint is the pagination note, which describes how to call it rather than when.

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

Install Server

Other Tools