Skip to main content
Glama
Tobeworks

invoiceshelf-mcp

by Tobeworks

get_estimate

Fetch complete details for one estimate by ID, including line items, totals, and status, to support review and approval workflows.

Instructions

Get full details for a single estimate by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
estimateIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/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 and a complete (unpaginated) record via 'full details', but says nothing about permissions, behavior on a nonexistent/invalid ID, or what the response contains.

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?

One short sentence, front-loaded with the verb and resource, with zero filler. Nothing could be removed without losing meaning.

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?

For a simple single-record lookup with no output schema and no annotations, the description is minimally adequate, but it leaves the meaning of 'full details' and the failure mode for a bad ID unspecified.

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% and the single required estimateId parameter has no schema description. The phrase 'by ID' only tells the agent the number is an estimate identifier; no format, source, or validity constraints are added.

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 (Get), resource (estimate), scope (single, by ID), and outcome (full details). The word 'single' implicitly distinguishes it from the sibling get_estimates, though the sibling is not named explicitly.

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?

Usage is only implied: use this when you have an estimate ID and want the complete record rather than a list. There is no explicit when-to-use, no mention of get_estimates as the list alternative, and no prerequisites stated.

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