Skip to main content
Glama

qeaas-mcp

dice

Rejection-sampled dice rolls (no modulo bias), anonymous and rate-limited. Echoes the DRBG bytes drawn for transparency.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
sidesNo

TDQS

A4.2/5.0
Behavior5/5

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

Without annotations, the description carries full weight for transparency. It discloses the rejection-sampling technique, absence of modulo bias, anonymity, rate limiting, and transparency via echoed DRBG bytes. This is highly informative for an agent.

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 two concise sentences, front-loaded with the core purpose. Every clause adds value without redundancy. Highly efficient.

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?

Given no output schema, the description should clarify the return value. It mentions 'echoing DRBG bytes' but does not specify the primary output (e.g., a list of dice roll results). This gap reduces completeness for an agent.

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 add meaning to the parameters. It does not explicitly describe 'count' or 'sides', though the context of dice rolls makes them intuitive. The description fails to provide essential parameter documentation.

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 that the tool performs 'dice rolls' using rejection sampling to avoid modulo bias, distinguishing it from sibling tools like 'random' and 'random_bytes' which serve general random generation. The purpose is explicit and specific.

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

Usage Guidelines4/5

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

The description mentions 'anonymous and rate-limited' which informs about usage context, but does not explicitly provide when-to-use or when-not-to-use guidance relative to sibling tools. However, the purpose is so specific that appropriate usage is implied.

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.