Skip to main content
Glama
SamuelBalbas

tryton-stock-mcp

by SamuelBalbas

get_lot_detail

Retrieve identifying details for a specific stock lot by its ID to support auditing and traceability.

Instructions

Return identifying information for one stock lot.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
lot_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

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?

The description frames this as returning information, so an agent can infer a read-only operation. However, with no annotations provided, it does not disclose error behavior, authorization needs, or what 'identifying information' excludes.

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?

A single sentence with no unnecessary words; it front-loads the action and the resource. Every word earns its place.

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 one-parameter lookup with an output schema, the basic invocation is inferable: call with lot_id. But the description omits when to choose this over search_lots and any behavioral caveats, making it only minimally complete.

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 description only loosely ties 'one stock lot' to the required lot_id. It does not add meaningful semantic detail beyond the schema's 'Lot Id' title and integer type.

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 clear action ('Return') and a specific resource ('identifying information for one stock lot'). The 'one stock lot' scope helps distinguish it from search_lots, though the exact fields returned are not specified.

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?

The description gives no guidance on when to use this tool versus alternatives like search_lots or get_product_detail. The required lot_id implies a known-ID lookup, but no explicit context or exclusions are provided.

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