Skip to main content
Glama

get_library_metadata_by_ids_by_element_by_timestamp

Read-onlyIdempotent

Retrieve artwork or theme for library items by providing IDs, element type, and timestamp to manage caching.

Instructions

Get an item's artwork, theme, etc.

GET /library/metadata/{ids}/{element}/{timestamp}

Args: ids: Comma-separated list of IDs element: The type of artwork element (e.g., art, poster, thumb) timestamp: A timestamp on the element used for cache management in the client

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYes
elementYes
timestampYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds one meaningful behavioral detail beyond annotations: the timestamp is 'used for cache management in the client,' which helps the agent understand why the parameter exists. However, it does not disclose response behavior, 404 conditions, or how stale timestamps are handled. No contradiction with annotations exists.

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?

The description is compact and well-organized: a one-line purpose, the endpoint path, and a tight Args block. Every sentence earns its place, especially given the 0% schema coverage. The HTTP path is partially redundant with the tool name (which already encodes the endpoint structure), but it is still useful for confirming the call verb and route.

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?

All three required parameters are explained, the output schema exists, and annotations cover read/idempotency safety, so the essential calling information is present. However, for a tool sitting in a large cluster of near-identical metadata endpoints, the lack of any guidance on selecting this endpoint over siblings creates a real completeness gap. The description is adequate but leaves the agent to infer when this specific path is appropriate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description carries the full burden and compensates well: ids gets a format detail ('comma-separated list'), element gets concrete examples ('art, poster, thumb'), and timestamp gets its semantic purpose ('cache management in the client'). This is genuinely useful beyond the bare schema. It stops short of a 5 only because the valid values of 'element' are left open-ended with no hint of the full value set.

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 and resource: 'Get an item's artwork, theme, etc.' This clearly identifies the operation as fetching artwork elements for library metadata items, which is distinct from siblings like get_library_metadata_by_ids that return metadata objects. However, it does not explicitly name or differentiate itself from the many similar siblings in the library metadata family, so it misses the top 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?

No guidance is given on when to use this tool versus alternatives. With dozens of sibling tools operating on library metadata (get_library_metadata_by_ids, get_library_metadata_by_ids_extras, get_library_collections_by_collection_id_composite_by_updated_at, etc.), there is no stated condition, exclusion, or pointer to when this specific endpoint is the right choice. The description merely states the HTTP path and parameters.

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

Deploy Server

Other Tools