Skip to main content
Glama

Citește o pagină sau un articol

citeste
Read-onlyIdempotent

Retrieve a page or blog article by type and slug, returning its full HTML content exactly as stored. Use to fetch CMS content for editing or display.

Instructions

Tot elementul, cu conținutul HTML, exact cum e salvat.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tipYes"pagina" = pagină fixă (Despre, Contact; "acasa" e prima pagină) · "articol" = articol de blog, cu dată și etichete
slugYesAdresa: litere mici fără diacritice, cifre, cratime. Ex. "despre-noi" → /despre-noi. Pagina "acasa" e /.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.19.1

TDQS

A3.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds meaningful behavioral detail beyond those annotations by stating that the tool returns the whole element with HTML content exactly as saved, which clarifies output fidelity and the lack of transformation. This is useful context, though it does not cover authentication or error behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no filler or repetition. It is appropriately sized for a simple read tool, though it could have added more value by including usage guidance. Still, every word earns its place and the output-relevant detail is front and center.

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?

Given the low complexity, the strong annotations, and the complete input schema, the description is mostly adequate. Since there is no output schema, the description's statement about returning the whole element with HTML content exactly as saved helps fill that gap. It could be more complete by mentioning typical edge cases, but nothing critical is missing for a simple read operation.

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%, so the schema already thoroughly documents both `tip` and `slug`, including enums, patterns, and examples. The description adds no parameter-specific guidance, so it does not improve on the schema. A baseline of 3 is appropriate because the schema carries the full semantic load.

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 title 'Citește o pagină sau un articol' clearly names the action (read) and the resource (page or article), and the schema's `tip` enum reinforces the page/article distinction. However, the description itself ('Tot elementul, cu conținutul HTML, exact cum e salvat.') describes the output rather than explicitly distinguishing this tool from siblings such as previzualizeaza or listeaza, so it falls short of a 5.

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?

The description gives no guidance on when to use this tool instead of alternatives. It does not mention that previzualizeaza, cauta, or listeaza should be used for other cases, and there are no exclusions or prerequisites. The only usable context comes implicitly from the schema parameters `tip` and `slug`, not from the description.

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