Skip to main content
Glama

qeaas-mcp

random

DRBG-derived random bytes (base64), anonymous and rate-limited. Capped at 64 bytes/request; powers the public dice player.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bytesNo

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description compensates by disclosing key behaviors: DRBG-derived (deterministic but seeded), anonymous, rate-limited, and capped at 64 bytes. It does not mention idempotency or side effects, but covers the most critical aspects.

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?

The description is a single, information-dense sentence with no wasted words, covering origin, format, anonymity, rate limit, cap, and use case.

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 tool with one parameter and no output schema, the description covers the key constraints and usage context. It misses details on error handling or response format, but these are minor gaps.

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 0%, but the parameter name 'bytes' is self-explanatory and the description reinforces the cap. The description does not explicitly map the parameter to the output length, but the context is sufficient.

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 clearly states it provides random bytes in base64 format, with a specific cap of 64 bytes, and distinguishes itself from sibling tools like random_bytes by mentioning DRBG derivation and its role powering the dice player.

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

Usage Guidelines3/5

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

It implies usage for small, anonymous random byte generation, but does not explicitly compare to alternatives like random_bytes or provide when-not-to-use scenarios.

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

A4.1/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: dice for dice rolls, kem_encapsulate for encapsulation, kem_keypair for key generation, random for basic random bytes, random_bytes for developer-friendly random bytes with provenance, and verify for provenance verification. No overlap.

Naming Consistency4/5

Tool names are all lowercase with underscores, following a consistent pattern. However, there's a mix of single-word names (dice, random, verify) and compound names (kem_encapsulate, kem_keypair, random_bytes), which slightly reduces consistency but remains readable.

Tool Count5/5

Six tools is well-scoped for a quantum entropy service, covering key operations like key generation, encapsulation, random byte generation, and verification without being excessive or insufficient.

Completeness4/5

The tool set covers core functionalities: key generation, encapsulation, random bytes, and provenance verification. A decapsulation tool is missing, but the server's focus on demo/encapsulation makes this a minor gap rather than a critical omission.