Skip to main content
Glama

get_category_page_content

Read-only

Retrieve category page content by providing Document360 category and page IDs. Fetch the exact article text for use in applications or support workflows.

Instructions

Get category page content by ID from Document360

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_idYesDocument360 page ID (UUID string)
category_idYesDocument360 category ID (UUID string)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv0.1.2
    • addedInput schema / additionalProperties
      Added value: +false
    • removedInput schema / properties / category_id / title
      Removed value: -"Category Id"
    • removedInput schema / properties / page_id / title
      Removed value: -"Page Id"
  2. Changed2 schema fields changedv1.0.0
    • addedInput schema / properties / category_id / description
      Added value: +"Document360 category ID (UUID string)"
    • addedInput schema / properties / page_id / description
      Added value: +"Document360 page ID (UUID string)"
  3. First observed

TDQS

B3.4/5.0
Behavior3/5

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

The readOnlyHint annotation already establishes that this is a safe read operation, and the description's 'Get' is consistent with it. The description adds no behavioral detail beyond that, but for a simple getter with an output schema the annotation covers the main behavioral concern.

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?

One compact sentence states action, resource, lookup key, and context with no filler or repetition. The structure is front-loaded and every word adds 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?

For a simple two-parameter read-only tool with an output schema, the description is nearly complete. It could be stronger by explaining the relationship between category_id and page_id or when this content endpoint is appropriate, but an agent has enough to select and invoke it correctly.

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

Parameters3/5

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

Schema description coverage is 100%, with both page_id and category_id documented as UUID strings, so the schema carries the parameter semantics. The description's singular 'by ID' is slightly ambiguous given two required IDs, but the schema resolves it; the description adds no parameter-level information.

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 the action ('Get'), the specific resource ('category page content'), the lookup mechanism ('by ID'), and the source system ('Document360'). It is clear, though it does not explicitly contrast with sibling tools like get_category, so differentiation is left to inference.

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 provided on when to choose this tool over get_category, get_article, or search_in_project. There is no mention of use cases, prerequisites, or exclusions, leaving the agent to infer selection solely from the tool name.

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