Skip to main content
Glama

List one-times

recharge_list_onetimes
Read-only

List one-time (non-recurring) line items with optional filters (customer, address, created/updated date ranges). Returns { onetimes }. Pagination is cursor-based: pass limit (default 50, max 250) and read next_cursor / previous_cursor from the response. IMPORTANT: when paging with cursor, Recharge accepts ONLY limit alongside it — omit every other filter on cursor requests. Recharge REST: GET /onetimes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results per page (1-250, default 50).
cursorNoPagination cursor (next_cursor / previous_cursor from a prior response). Use it ALONE with `limit` — omit all other filters on cursor requests.
address_idNoFilter by address id.
customer_idNoFilter by customer id.
created_at_maxNoFilter to one-times created on/before this date (ISO 8601).
created_at_minNoFilter to one-times created on/after this date (ISO 8601).
updated_at_maxNoFilter to one-times updated on/before this date (ISO 8601).
updated_at_minNoFilter to one-times updated on/after this date (ISO 8601).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

The annotations declare readOnlyHint=true, and the description aligns with that (list operation). The description adds behavioral details beyond annotations: cursor-based pagination, the response shape '{ onetimes }', and the API endpoint. No contradictions.

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 three sentences that front-load the core purpose, then pack in filters, response shape, and critical pagination rules. No redundant words; 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?

Given no output schema, the description mentions the response object '{ onetimes }'. It covers purpose, filters, pagination details, and the API endpoint. The only minor gap is not describing the structure of individual one-time items, but for a list tool this is acceptable.

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 coverage is 100% with good descriptions for each parameter. The description adds some extra context about pagination cursor behavior and response format, but the schema already documents each parameter's purpose. The added value is moderate, so baseline 3 is appropriate.

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 the tool lists 'one-time (non-recurring) line items' with optional filters, which is a specific verb+resource. The sibling list tools (e.g., list_subscriptions, list_charges) are differentiated by resource name, so no ambiguity.

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 explains when to use filters, but more importantly, it gives explicit pagination instructions: 'when paging with cursor, omit every other filter'. This is valuable guidance. However, it doesn't explicitly state when NOT to use this tool versus other list tools, though context makes it clear.

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.