Skip to main content
Glama
aqeelshamz

wixzel-phone-mcp

by aqeelshamz

List ledger entries

list_ledger_entries
Read-onlyIdempotent

List account ledger entries covering topups, usage, refunds, adjustments, promos, overages, and chargebacks, with the balance after each transaction. Reconcile account balances exactly.

Instructions

Every movement on the account (topup, usage, refund, adjustment, promo, overage, chargeback), with balance_after_micros. Balances reconcile exactly.

Requires scope billing:read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 20.
ending_beforeNoCursor from a previous response. Fetches the page before it. Not with starting_after.
starting_afterNoCursor from a previous response's next_cursor. Fetches the page after it.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior4/5

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

The description adds meaningfully beyond the annotations: it states that every movement type is included, that balances reconcile exactly, and that the response includes balance_after_micros. These are behavioral details not present in the annotations, and they are consistent with readOnlyHint=true and idempotentHint=true.

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?

Two sentences, no wasted words. The core behavioral content is front-loaded, and the scope requirement is clearly stated. 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?

For a simple read-only paginated list with well-documented parameters and safety annotations, the description is nearly complete. It describes the returned data field (balance_after_micros) and the universe of entries, though it does not mention ordering, which is a minor gap.

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?

The input schema already documents all three parameters with 100% coverage, including cursor semantics and limit bounds. The description adds no additional parameter-level meaning, which is acceptable because the schema carries the full burden. Baseline 3 is appropriate.

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 clearly identifies the resource (ledger entries) and the action (listing every account movement), and it enumerates the movement types and the balance_after_micros field. However, it does not explicitly differentiate itself from potentially similar siblings like list_usage_events or get_balance, so it misses the full sibling-differentiation quality.

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 guidance is provided about when this tool should be used instead of alternatives such as list_usage_events or get_balance. The only practical instruction is the required `billing:read` scope, which is a prerequisite, not a usage guideline.

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