Skip to main content
Glama
counter-measure

Everclear MCP Server

get_invoice_details

Retrieve detailed information for a specific invoice using its invoice ID. Use this to inspect invoice status, amounts, and related metadata.

Instructions

Get detailed information about a specific invoice

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
invoiceIdYesThe ID of the invoice

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.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. It implies a read operation but says nothing about permissions, whether a missing invoice raises an error or returns null, or what 'detailed' actually includes. For a retrieval tool with zero structured behavioral data, this leaves important gaps.

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?

One short, front-loaded sentence with no filler. It is efficient, though arguably under-specified rather than optimally concise.

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?

The tool is simple (one required param, no nesting, no output schema), so the description need not explain return values. Still, with no annotations and several sibling invoice tools, a sentence on scope or error behavior would meaningfully improve callability.

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 description coverage is 100% and the single parameter is documented ('The ID of the invoice'), so the schema already does the work. The description adds no format or source hints for the ID, so the 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 states a specific verb (get) and resource (detailed information about a specific invoice), so an agent can tell it retrieves one invoice by ID. However, it does nothing to distinguish itself from siblings like get_invoices or get_invoices_formatted, which is a real ambiguity given four invoice-related tools in the same family.

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?

There is no guidance on when to use this versus get_invoices (list) or get_invoices_formatted. The word 'specific' weakly implies single-invoice lookup, but no alternative or precondition is stated.

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