Skip to main content
Glama
MSPbotsAI

pax8-mcp

by MSPbotsAI

pax8_list_usage_summary_lines

Retrieve paginated usage lines for a specific usage summary ID, with optional page and size controls.

Instructions

List usage lines for a specific usage summary.

    Args:
        usage_summary_id: The unique identifier of the usage summary.
        page: Zero-based page number for pagination (default: 0).
        size: Number of results per page (default: 10).
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
sizeNo
usage_summary_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

The operation is described as 'List', which implies a read-only, non-destructive action. However, with no annotations provided, the description does not explicitly disclose any side effects, pagination behavior, or rate limits beyond the parameter documentation.

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 brief, containing a one-line summary followed by a clean parameter list. No redundant information or fluff.

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 that the tool is a list operation and the context indicates an output schema exists (though not shown), the description is sufficient. It does not specify the return format, but this is standard for list endpoints and not critical for invoking the tool correctly.

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

Parameters5/5

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

The description explains all three parameters (usage_summary_id, page, size) with clear, concise semantics, covering exactly what each controls. This fully compensates for the schema's lack of per-property descriptions.

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 identifies a specific verb ('List') and resource ('usage summary lines') for a given usage summary, distinguishing it from sibling tools that list companies, invoices, or other resources.

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 purpose is obvious from the resource name, but the description does not explicitly state when to prefer this tool over alternatives (e.g., when you have a usage_summary_id and need line items). It is implicit rather than explicit.

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