Skip to main content
Glama

EngineerCore — Mechanical Engineering Calculator

Analyze Vibration

analyze_vibration
Read-onlyIdempotent

Analyse a mass-spring-damper system. Returns natural frequency (rad/s and Hz), damping ratio, damped natural frequency, system classification, logarithmic decrement, and engineering flags. All inputs must be in strict SI units.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
massYesMass of the system in kilograms
stiffnessYesSpring stiffness in Newtons per metre
damping_coefficientYesDamping coefficient in Newton-seconds per metre

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
f_dYesDamped natural frequency in Hz (underdamped only)
f_nYesNatural frequency in Hertz
zetaYesDamping ratio (dimensionless)
omega_dYesDamped natural frequency in rad/s (underdamped only)
omega_nYesNatural frequency in radians per second
c_criticalYesCritical damping coefficient in N·s/m
log_decrementYesLogarithmic decrement (underdamped only)
classificationYesSystem damping classification
engineering_flagsYesAdvisory messages about the system characteristics

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds that it returns outputs and requires SI units, providing useful context beyond 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?

Two sentences, front-loaded with purpose and outputs, no wasted words. Highly concise and structured.

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?

Covers inputs, outputs, and constraints. Output schema exists (not shown here) which reduces burden. Could detail 'engineering flags' but overall complete.

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% with good descriptions. The description adds the overarching constraint of SI units but does not elaborate per-parameter beyond schema. Baseline 3 is appropriate.

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 the tool analyzes a mass-spring-damper system and lists specific outputs. It is distinct from siblings (analyze_state_space, tune_pid).

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?

Explicitly states all inputs must be in strict SI units, which is a clear usage constraint. Implicitly indicates use for mass-spring-damper systems; lacks explicit when-not-to-use guidance but is adequate.

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
Disambiguation5/5

Each tool addresses a distinct area: state-space analysis, vibration analysis, and PID tuning. No overlap in functionality, making it easy for an agent to select the correct tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case: analyze_state_space, analyze_vibration, tune_pid. The prefix 'analyze' for two tools and 'tune' for the third is appropriate for their actions.

Tool Count5/5

Three tools is appropriate for a focused mechanical engineering calculator covering control and vibration analysis. Each tool provides significant functionality, and the count is neither too sparse nor overly heavy.

Completeness4/5

For the domain of dynamics and control, the tools cover state-space analysis, vibration analysis, and PID tuning, which are core topics. Minor gaps exist, such as frequency response analysis, but the set is largely complete for basic control system design and vibration assessment.

Resources