Skip to main content
Glama

getPaymentStats

Retrieve payment transaction statistics from PayGate to analyze transaction metrics. Read-only access with rate limit of 100 requests per minute.

Instructions

Payment stats (rate limit: 100 requests per 1m) Read-only (GET /paygate/transactions/stats).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

There are no annotations, so the description carries the full transparency burden. It usefully discloses read-only behavior and a 100-requests-per-minute rate limit. However, it does not describe the response shape, the exact meaning of 'stats', or any authentication requirements.

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 very short and front-loads the tool's purpose and rate limit. The parenthetical structure is slightly telegraphic, but every phrase adds useful information and there is no wasted text.

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 simple zero-parameter GET endpoint, the description is mostly adequate. However, with no output schema and no mention of what the stats represent or whether they cover a time range, an agent may be uncertain about how to interpret the response.

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?

The input schema has zero parameters and 100% schema description coverage, so there is nothing for the description to add. The baseline of 4 applies here since the tool takes no parameters and thus needs no parameter-level clarification.

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 names the endpoint and marks it as a read-only GET operation, so an agent can tell it retrieves payment statistics. It does not explicitly enumerate what metrics are included or distinguish it from analytics siblings like getAnalyticsOverview or getMonthToDateVolume.

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?

No when-to-use or alternative guidance is provided; the only usage-related information is the rate limit and read-only status. With many sibling analytics and transaction tools, an agent cannot tell when to choose this over getTransactionById or getAnalyticsOverview.

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