Skip to main content
Glama

get_category_references

Read-only

List content references in a category using cursor-based pagination. Provide workspace, channel, and category IDs to retrieve items and a cursor for the next page.

Instructions

List content references in a category with cursor-based pagination.

workspace_id: target workspace ID — get available IDs from list_workspaces()
Returns items and a cursor for the next page (null if no more pages).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cursorNo
page_sizeNo
channel_idYes
category_idYes
workspace_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.18

TDQS

C2.8/5.0
Behavior3/5

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

Annotations already declare read-only and non-destructive. The description adds that it returns items and a cursor for pagination, but does not discuss rate limits, ordering, or any side effects. Given annotations, this is adequate though minimal.

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?

Two short sentences with no redundant fluff. The parameter hints are included but not verbose.

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

Completeness2/5

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

No output schema exists, and the description only says 'items and a cursor' without detailing what an item contains or how pagination works. Also missing parameter explanations for half the fields, so not complete.

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

Parameters2/5

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

The description explains workspace_id and cursor (implicitly), but leaves channel_id, category_id, and page_size undefined. Since the schema provides no descriptions, this is insufficient for users to correctly set all parameters.

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?

Description clearly states a specific action (list) and resource (content references in a category), and mentions cursor-based pagination. It does not explicitly contrast with sibling list tools, but the name and wording are unambiguous.

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

Usage Guidelines1/5

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

No guidance on when to use this tool versus alternatives like list_contents or search_contents. The description only states what it does, not when to choose it.

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