Skip to main content
Glama

Get Information Page

get_information_page

Retrieve full content of a single OpenCart information or CMS page by its ID to display or process page details.

Instructions

Get full content of a single information/CMS page by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
information_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it only implies a read via 'Get' and says nothing about permissions, error behavior for an invalid ID, or side effects. 'Full content' hints at return scope, but the output schema already covers that, so no meaningful behavioral trait is added.

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?

A single front-loaded sentence with no filler; the verb and resource appear first and nothing is redundant. Appropriately sized for a one-parameter read tool.

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

Completeness3/5

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

The presence of an output schema means return values need not be explained, and the description covers the basic operation and its ID input. However, for a tool with zero annotation coverage it omits usage context and error/prerequisite information that would make it fully self-sufficient.

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?

Schema description coverage is 0%, so the description must compensate for the single integer parameter. 'By ID' confirms the parameter is an identifier, but it adds no format, source, or range detail beyond the schema's name and type, leaving the parameter largely undocumented.

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 a specific verb ('Get') and resource ('full content of a single information/CMS page') and the 'single' qualifier implicitly distinguishes it from the plural list sibling get_information_pages. It stops short of explicitly naming that sibling, so an agent still has to infer the routing rule.

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?

There is no guidance on when to use this tool versus get_information_pages or update_information, nor any prerequisite such as needing an existing ID. The description only says what it does, leaving the selection decision entirely to inference.

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