Skip to main content
Glama
Tobeworks

invoiceshelf-mcp

by Tobeworks

get_customer

Retrieve full details for a single customer using their ID to view account information, contact data, and related records in the invoicing system.

Instructions

Get full details for a single customer by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customerIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the basic operation, omitting important context such as required permissions, what 'full details' includes, error handling for missing IDs, or response format. This is a significant gap for a 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that conveys the essential action. It is front-loaded with the verb and resource, leaving no room for waste.

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?

Given the lack of annotations, 0% schema description coverage, and no output schema, the description is incomplete. It doesn't explain what 'full details' entails, whether the ID is numeric, or how errors are handled, leaving the agent under-informed for invocation.

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 coverage is 0%, so the schema lacks parameter descriptions. The description mentions 'by ID' but doesn't explain the customerId parameter's format, expected type (number vs string), or how to obtain it. It fails to compensate for the schema's lack of detail.

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 clear verb (Get) and resource (customer), and specifies retrieval by ID for a single record. It's distinguishable from list-oriented siblings like get_customers, though it doesn't explicitly differentiate from update_customer or delete_customer beyond the verb.

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?

The description implies usage when needing full details for a specific customer, but provides no explicit when-to-use guidance or alternatives like get_customers for listing. No mention of prerequisites or error conditions.

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