Skip to main content
Glama
sailorpepe

Stampchain MCP Server

get_collection

Fetch detailed stamp collection data by collection ID. Optionally include paginated stamps to review contents. Ideal for querying specific collections.

Instructions

Retrieve detailed information about a specific stamp collection by its ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stamps_pageNoPage number for stamps if included
stamps_limitNoNumber of stamps per page
collection_idYesThe ID of the collection to retrieve
include_stampsNoWhether to include stamps in the collection

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.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 of behavioral disclosure. It states the tool retrieves information, implying a read-only operation, but doesn't mention potential side effects, authentication needs, rate limits, or response format. For a tool with 4 parameters and no annotation coverage, this leaves significant behavioral gaps.

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 front-loads the core purpose ('retrieve detailed information about a specific stamp collection by its ID') with zero wasted words. Every part of the sentence contributes directly to understanding the tool's function.

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?

Given no annotations and no output schema, the description adequately covers the basic purpose but lacks details on behavioral traits, response format, and usage context. For a retrieval tool with 4 parameters, it provides a minimal viable foundation but doesn't fully compensate for the missing structured data, leaving room for improvement in completeness.

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%, so the schema fully documents all 4 parameters (collection_id, include_stamps, stamps_page, stamps_limit). The description adds no parameter-specific information beyond implying the collection_id is required, which is already clear from the schema. This meets the baseline for high schema coverage.

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 clearly states the verb 'retrieve' and the resource 'detailed information about a specific stamp collection by its ID', making the purpose unambiguous. It distinguishes from siblings like 'search_collections' by focusing on a single collection rather than searching multiple. However, it doesn't explicitly contrast with 'get_stamp' or other get_* tools, preventing a perfect score.

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 provides no guidance on when to use this tool versus alternatives like 'search_collections' for finding collections or 'get_stamp' for individual stamps. It mentions retrieving by ID but doesn't specify prerequisites (e.g., needing the ID first) or exclusions, leaving usage context implied rather than explicit.

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