Skip to main content
Glama

ReliaStats

weibull_summary

Read-onlyIdempotent

Given Weibull two-parameter (β, η), return all the closed-form summary statistics: MTTF (η·Γ(1+1/β)), B10 / B50 / B90 life, characteristic life (just η, surfaced explicitly), and — if evaluateAtT supplied — R(t), F(t), and hazard h(t) at that time. Pure-math, fully deterministic. Use when the user has a fit and wants the numbers downstream tools normally compute (don't recompute these from training-data recall — call this tool). ANTI-FABRICATION: every number is an exact closed-form value. Quote verbatim.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
etaYesWeibull characteristic life η, in your chosen time unit.
betaYesWeibull shape parameter β (dimensionless).
evaluateAtTNoOptional time t (same unit as η) at which to also return reliability R(t), failure F(t), and hazard h(t).

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, but the description adds significant behavioral context: 'Pure-math, fully deterministic,' 'ANTI-FABRICATION: every number is an exact closed-form value,' and the instruction to quote verbatim. It also discloses the conditional behavior when evaluateAtT is provided, which is not visible in annotations. No contradictions 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?

The description is three sentences and front-loaded with the core purpose and output list, followed by usage context and a crucial anti-fabrication warning. Every sentence earns its place; there is no redundant or filler content.

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 purely mathematical tool with no output schema, the description is exceptionally complete: it lists all summary statistics, the exact formula for MTTF, the conditional evaluation at time t, deterministic guarantees, and appropriate usage context. It covers everything an agent needs to decide when to call and what to expect.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema provides 100% coverage for all three parameters, but the description adds substantive meaning: it gives the MTTF formula, clarifies that characteristic life is simply η, and explains the optional evaluateAtT parameter triggers R(t), F(t), and h(t) outputs. This goes beyond the schema's individual parameter descriptions.

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 and resource: 'Given Weibull two-parameter (β, η), return all the closed-form summary statistics,' enumerating exact outputs like MTTF, B10/B50/B90 life, and conditional R(t), F(t), h(t). This clearly distinguishes it from sibling tools like explain_distributions_for_reliability or interpret_weibull_shape, which are explanatory rather than computational.

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 provides explicit when-to-use guidance: 'Use when the user has a fit and wants the numbers downstream tools normally compute' and warns against an alternative action ('don't recompute these from training-data recall'). However, it does not name specific sibling tools for alternative use cases, so it stops short of fully explicit exclusion guidance.

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.2/5.0
Disambiguation3/5

Several tools overlap in purpose, particularly the explain_* family: explain_distributions_for_reliability and recommend_distribution both address distribution selection, and explain_distributions also covers Weibull β interpretation, overlapping with interpret_weibull_shape. However, descriptions are detailed enough that careful reading usually disambiguates, so the confusion is moderate rather than severe.

Naming Consistency4/5

Most tools follow a clear verb_noun pattern (compute_, describe_, explain_, interpret_, list_, recommend_), making the naming predictable. Two exceptions, 'system_reliability' and 'weibull_summary', are noun phrases without a verb, which is a minor deviation from the pattern but not disruptive.

Tool Count5/5

With 11 tools, the server is well within the ideal 3–15 range and each tool serves a distinct purpose, from educational explainers to closed-form calculation utilities. The count feels well-scoped for a reliability statistics knowledge and reference server.

Completeness4/5

The tool surface covers fundamentals, distribution guidance, Weibull calculations, availability, system reliability, and paired-model documentation, giving broad coverage of the domain. It intentionally defers fitting to an external sandbox, so the main minor gap is the lack of direct data-fitting or confidence-interval computation tools, but these can be worked around.

Resources