Skip to main content
Glama

Razi Text Generation

generate_text

Generate filler prose — lorem ipsum, random copy or sentences — for mockups and placeholder content. Returns JSON { text, provider, cached } with the blocks separated by newlines. A language model writes it, so it is a paid call and the output is approximate: type, length and count are phrased into the prompt rather than enforced, and the result will not match a requested character count exactly. For placeholder people (names, emails, addresses) use generate_fake_data, which is exact, free and deterministic. For a real email use draft_email, and to rework existing text use humanize_text. 15 calls per minute per IP; capped at roughly 1,500 tokens; identical requests may return a cached result.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesFlavour of filler to ask for: classic latin lorem ipsum, arbitrary English copy, or standalone sentences. Default lorem. Used as a prompt hint, so it steers the style rather than guaranteeing it.
countNoHow many separate blocks to return. Default 1. Large values are bounded in practice by the ~1,500 token output cap.
lengthNoRough size of each block in characters. Default 100. Requested in the prompt, so treat it as a target, not a limit.

Schema Changelog

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

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

No annotations are provided, so the description carries the full burden — and it delivers: return shape ('Returns JSON { text, provider, cached }'), approximate behavior ('phrased into the prompt rather than enforced'), cost ('a paid call'), and limits ('15 calls per minute per IP; capped at roughly 1,500 tokens; identical requests may return a cached result'). This is rich behavioral disclosure for a non-deterministic tool.

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?

Dense but every sentence earns its place: purpose → return format → behavioral caveats → sibling routing → operational limits. The most decision-relevant information (scope and alternatives) is front-loaded ahead of the caveats, and there is no filler or repetition.

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

Completeness5/5

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

For a non-deterministic, paid, rate-limited tool with no annotations and no output schema, the description covers everything an agent needs: return format, approximation behavior, caching, rate limits, token cap, and alternative tools. The schema handles the parameters; the description handles the rest.

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 coverage is 100% and each parameter already carries a detailed description covering defaults, the enum values, and the prompt-hint semantics. The description reinforces these traits ('type, length and count are phrased into the prompt rather than enforced') but adds little per-parameter meaning beyond what the schema already states, so the baseline 3 applies.

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?

States a specific verb and resource ('Generate filler prose') plus the exact use case ('for mockups and placeholder content'), and enumerates the three flavours (lorem ipsum, random copy, sentences). The closing sentences name the sibling tools it is not (generate_fake_data, draft_email, humanize_text), so an agent can distinguish it from every alternative without opening their schemas.

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?

Explicitly routes to alternatives with conditions: 'For placeholder people ... use generate_fake_data, which is exact, free and deterministic', 'For a real email use draft_email', and 'to rework existing text use humanize_text'. It also states operational constraints (15 calls/minute, ~1,500 token cap, caching). Nothing is left to inference.

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.

Resources