Skip to main content
Glama

Remember Me Collections

get_collection_metrics

Read-onlyIdempotent

Get community engagement metrics: memorization progress, verse mastery, difficult verses, and activity stats.

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
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 safety. The description adds the list of metric categories which is more about output content than behavior. It does not mention pagination, errors, or other behavioral nuances, but given the strong annotations, it does not contradict them and provides modest additional context.

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 remarkably concise: one sentence defining the tool's purpose followed by a single parameter explanation. It is front-loaded with the main action and contains no unnecessary words or repetition. Every line earns its place.

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?

For a simple single-parameter, read-only tool with rich annotations and an output schema, the description is complete. It does not need to explain return values because the output schema exists. The only potential gap is error handling, but given the simplicity and safety profile, this is not necessary for the agent to select and invoke the tool 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 defines collection_id as an integer without a description, so the description carries the burden. It adds semantic value by stating 'The collection ID (from browse_collections results)', telling the agent where to obtain the value. While it does not specify constraints beyond the schema, the provenance guidance is useful and goes beyond the raw schema.

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 clearly states the tool's function with a specific verb ('Get') and resource ('community engagement metrics'), and enumerates the metric types (memorization progress, verse mastery, difficult verses, activity stats). This distinguishes it from sibling tools like browse_collections and get_collection_detail, which serve different purposes.

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 provides implicit usage guidance by indicating that collection_id comes from browse_collections results, implying a prerequisite. However, it does not explicitly compare this tool with get_collection_detail or state when one should be preferred over the other, so guidance remains 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