Skip to main content
Glama

Remember Me Collections

get_collection_detail

Read-onlyIdempotent

Get full details of a published collection including all verse text, references, and topics.

The collection and each verse include a raw image — the URL stored by the publisher, or null if none was set (the app may still display an auto-generated cover when null). These are the stored values, not the computed display image, and round-trip with create_collection / add_verse if you copy this collection.

Args: collection_id: The collection ID (from browse_collections results).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
collection_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so the bar is lower. The description adds valuable behavioral context: the image field is the raw stored URL (not the computed display), may be null, and 'round-trip[s] with create_collection / add_verse.' It also narrows applicability to 'published collection.'

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 well-structured with a clear summary, a focused paragraph on image behavior, and an Args section. It is slightly verbose for a simple getter, but each sentence serves a purpose—especially the image caveat.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, the description needn't explain return format. It covers what is returned (verse text, references, topics), the image nuance, and the ID source. Combined with rich annotations, this gives a complete picture for an agent.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate. It fully explains the only parameter: 'collection_id: The collection ID (from browse_collections results),' providing both meaning and source. This is sufficient for a single integer parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Get' with the resource 'published collection' and explicitly states the scope: 'all verse text, references, and topics.' This clearly distinguishes it from sibling tools like browse_collections (list) and get_collection_metrics (metrics).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description communicates when to use this tool by stating the collection_id comes 'from browse_collections results,' implying a workflow. It also mentions round-tripping with create_collection/add_verse for copying. However, it does not explicitly contrast with get_collection_metrics or state when not to use it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Each tool serves a distinct purpose: browsing/searches, retrieving full details, and viewing engagement metrics. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: browse_collections, get_collection_detail, get_collection_metrics. The pattern is uniform and predictable.

Tool Count5/5

With 3 tools, the server is well-scoped for a read-only collection browsing and metrics use case. Each tool earns its place, and the count is within the typical 3-15 range.

Completeness3/5

The read-side coverage (browse, detail, metrics) is solid, but there are no create, update, or delete operations, and the get_collection_detail description mentions create_collection/add_verse tools that are not present. This suggests notable gaps in the expected lifecycle coverage.

Resources