Skip to main content
Glama

accelo_get_payment

Fetch a single payment record by its ID from Accelo, with optional extra fields for detailed data.

Instructions

Get a single payment by ID.

Args: id: Payment ID fields: Additional fields to return

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
fieldsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It doesn't state whether it requires specific permissions, is read-only, what happens if the ID doesn't exist, or the return format. This is a significant gap for a retrieval tool with zero annotation coverage.

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 a single sentence followed by a brief Args section. It is front-loaded and efficient, with no unnecessary information, though the Args format is somewhat sparse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations, no output schema, and 0% schema description coverage, the description is insufficient. It doesn't explain return values, error conditions, or authentication requirements, leaving key contextual gaps.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It briefly mentions both parameters: 'id: Payment ID' and 'fields: Additional fields to return', but provides no format, type, or further details. This is minimal and leaves much unspecified.

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?

States a specific verb+resource: 'Get a single payment by ID.' This clearly distinguishes it from siblings like accelo_list_payments or accelo_count_payments. However, it does not mention other payment-related tools, so it lacks explicit sibling differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit when-to-use guidance or alternatives mentioned. 'By ID' implies it's for retrieving a specific payment when the ID is known, but no exclusions or comparisons to list_payments are provided.

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

Deploy Server

Other Tools