Skip to main content
Glama

Render information as an interactive view

render_information_ui
Read-only

Render a fully grounded answer as a non-consequential interactive information view when structure or interaction materially improves it. Complete factual reasoning first and always pass the authoritative plain answer. If the user supplied sufficient facts, use them directly and invoke immediately without extra retrieval. For a named real-person profile, set profileSubject to the canonical name unless the user requests no image; Fify will perform a bounded trusted Wikimedia portrait lookup. Pre-resolved attributed Wikimedia or Openverse media may also be supplied, but never invent or guess media URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mediaNo
localeYes
sourcesYes
versionYes
sectionsYes
groundedAnswerYes
profileSubjectNoCanonical person name for a real-person profile. Omit when the user requests no image or the subject is not a person.
originalRequestYes
continuationStateNo
suggestedRefinementsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
runIdYes
stateYes
framesYes
fallbackTextYes
lastSequenceYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already carry the safety profile (readOnlyHint=true, openWorldHint=true, destructiveHint=false), so the description's 'non-consequential' claim is aligned but not additive on safety. It adds genuine behavioral disclosure beyond annotations: 'Fify will perform a bounded trusted Wikimedia portrait lookup' for named real-person profiles, plus the trust boundary of never inventing media URLs. No contradiction with annotations.

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?

Five dense sentences, roughly 110 words, with the core purpose front-loaded and workflow/constraints following in logical order. Every sentence earns its place: trigger condition, reasoning sequence, immediate-invocation rule, profileSubject procedure, media constraint. No filler or redundancy.

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?

An output schema exists, so return-value documentation is unnecessary. The description, schema, and annotations together cover the invocation trigger, grounding workflow, profile-image behavior, and media provenance constraints. Minor gaps remain around the role of continuationState and originalRequest, but these are inferable from their names and the sibling read tool.

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 only 10%, so the description must compensate. It does add real parameter guidance for profileSubject (set to canonical name unless no image requested), media (pre-resolved Wikimedia/Openverse only, never guess URLs), and groundedAnswer (always pass the authoritative plain answer). However, required params like originalRequest, continuationState, and suggestedRefinements receive no semantic enrichment, leaving part of the burden unmet.

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 opens with a specific verb+resource+condition: 'Render a fully grounded answer as a non-consequential interactive information view when structure or interaction materially improves it.' This names the deliverable (interactive view), the input (grounded answer), and the trigger condition, and it is clearly distinguished from the sibling read_information_ui_run by the render-vs-read contrast.

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

Usage Guidelines5/5

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

Usage context is explicit and actionable: invoke 'when structure or interaction materially improves it', complete factual reasoning first, always pass the authoritative plain answer, avoid extra retrieval when sufficient facts are supplied, and never guess media URLs. It tells the agent not just what to do but the order in which to do it.

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

B3.1/5.0
Disambiguation4/5

The two tools are distinct in action: one reads the mounted widget's frames, the other renders an information view. However, both share the 'information_ui' terminology, and the cryptic 'read_information_ui_run' naming could cause some initial confusion about where the boundary lies.

Naming Consistency3/5

Both names start with a verb and use snake_case, but 'render_information_ui' follows a clean verb_noun pattern while 'read_information_ui_run' adds an awkward '_run' suffix. This minor inconsistency suggests a mixed convention that is still readable.

Tool Count3/5

With only two tools, the set feels thin for a general-purpose information UI server, but it may be appropriately scoped for a tightly coupled widget with read and render capabilities. The tools each seem to serve a distinct role, making the small count borderline rather than clearly deficient.

Completeness4/5

For the apparent domain of managing a Fify information widget, providing a read mechanism and a render mechanism covers the core lifecycle. The render tool also incorporates fallback behaviors like profile lookups and media handling, suggesting the surface is reasonably complete for its narrow scope.