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.1/5.0
Behavior4/5

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

With annotations already indicating a safe, read-only, idempotent operation, the description adds valuable behavioral context about the raw image field, clarifying that it is the stored URL (possibly null) and not the computed display image. It also mentions round-tripping with create_collection/add_verse, which goes beyond the annotations.

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 purpose statement and an Args section. The additional explanation about image handling is relevant and earns its place, though it could be trimmed slightly without losing essential meaning.

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

Completeness4/5

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

The tool has a simple parameter and an output schema, so the description does not need to explain return values. It provides sufficient context for a read-only operation, including the image nuance, making it adequately complete for the agent to invoke correctly.

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?

The schema only provides the parameter name and type, with 0% coverage. The description compensates by explaining that collection_id is 'from browse_collections results,' adding relational context that helps the agent understand where the ID comes from and how to use it.

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 states a specific verb and resource: 'Get full details of a published collection including all verse text, references, and topics.' This clearly distinguishes it from sibling tools like browse_collections (listing) and get_collection_metrics (metrics) by focusing on full detail retrieval.

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?

The description implies usage context by stating 'from browse_collections results,' indicating that collection IDs come from the browse tool. However, it does not explicitly contrast with sibling tools or provide when/when-not criteria, making the guidance 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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool targets a distinct aspect: browse_collections for searching and listing, get_collection_detail for full content of a single collection, and get_collection_metrics for engagement statistics. There is no functional overlap, making tool selection unambiguous.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: browse_collections, get_collection_detail, get_collection_metrics. The naming is predictable and clear, with no mixed conventions or vague verbs.

Tool Count4/5

With only 3 tools, the server is lean but well-scoped for a read-only collections browser. Each tool serves an essential purpose, though the small count might feel slightly thin for broader use cases.

Completeness4/5

The server covers the core read-only workflow: search/browse, retrieve full details, and access metrics. Missing create/update/delete operations, but these appear out of scope given the 'published collections' focus.

Resources