Skip to main content
Glama

MakerPortal compute

Solve the eigenmodes of a rectangular room.

roomModes

Solve the eigenmodes of a rectangular room.

The identical function that renders /lab/room-modes/{w}x{l}x{h}. Dimensions are in feet and are converted at 0.3048 m/ft. Returns every mode below maxFreq, the three axial fundamentals, mode pile-ups (three or more modes within 5 Hz, capped at 200 Hz because dense modes above the Schroeder crossover are desirable rather than a defect), the widest axial gap below 200 Hz, and Schroeder frequencies at RT60 = 0.3 s and 0.6 s. The full mode list is omitted unless include=modes is passed; counts are always present.

Every result carries provenance.canonicalUrl — the published page for these exact inputs, or the lane hub when they are off the published grid.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
widthYesRoom width in feet.
heightYesCeiling height in feet.
lengthYesRoom length in feet.
includeNoOptional heavy block to include, omitted by default. "modes": Every solved mode and the axial subset, with their (nx, ny, nz) orders.
maxFreqNoHighest mode frequency to solve for, in Hz. Defaults to 300. Mode count scales with volume × frequency³, so a large room and a high maxFreq together are refused with a 400 once the enumeration would exceed 100,000 modes; the error names the maxFreq that would have worked.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputsYesThe parsed inputs, echoed back with defaults filled in.
resultYesThe solved analysis. Shape is per-tool.
licenseYes
provenanceYes

Schema Changelog

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

  1. First observed

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations, the description carries the full transparency burden and mostly succeeds: it reveals unit conversion (0.3048 m/ft), the output summary fields, the include=modes gating, the 200 Hz pile-up cap and rationale, and provenance.canonicalUrl. The only minor gap is that it does not explicitly state the pure-calculation/no-side-effect nature, though that is strongly implied.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loads the core purpose before the detailed return-value semantics. A few clauses are dense, such as the parenthetical explanation of the 200 Hz pile-up cap, but each sentence contributes behavioral or provenance information rather than padding.

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?

The combination of a 100%-covered input schema, a rich output schema, and this description leaves little missing: units, required dimensions, optional include flag, frequency limits, refusal condition, and provenance are all covered. An agent has everything needed to decide whether to call it and how to set parameters correctly.

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?

Schema coverage is 100%, so the baseline is 3, and the description adds real value beyond the schema: it explains that dimensions are converted from feet, that include=modes is an omitted-by-default heavy block, and that maxFreq interacts with room volume to cause refusals that name a working maxFreq. It does not need to restate the schema's field descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/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: 'Solve the eigenmodes of a rectangular room,' and the body doubles down with the concrete /lab/room-modes/{w}x{l}x{h} mapping. It is unambiguous about what the tool computes, but it never distinguishes itself from the similarly room-acoustics sibling roomShapeBand, so it stops short of a 5.

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

Usage Guidelines2/5

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

The description gives no when-to-use guidance and names no alternative tools or exclusion conditions. An agent can infer it is for room mode calculations, but the tool does not say when roomModes should be preferred over roomShapeBand or why include=modes might be avoided for large rooms.

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.3/5.0
Disambiguation5/5

Each tool targets a clearly distinct computational domain: biquad filter design, LLM VRAM fitting, room eigenmodes, room shape selection, and solenoid fields. Even the two room-related tools are cleanly separated—one analyzes existing dimensions while the other synthesizes proportions—so an agent is unlikely to misselect.

Naming Consistency5/5

All five tool names follow the same camelCase, domain-plus-result pattern: biquadDesign, llmVramFit, roomModes, roomShapeBand, solenoidField. There are no underscores, hyphens, or mixed casing conventions, so the naming is internally consistent.

Tool Count5/5

Five tools is a well-scoped count for a specialized compute server. Each tool is substantial and standalone, and there is no sense of padding or missing middle ground between too granular and too broad.

Completeness5/5

Each tool is a self-contained calculation with rich output and explicit bounds, and no CRUD lifecycle is expected for a compute server. The coverage across the exposed domains is thorough, with no obvious dead-end workflow or missing companion operation.

Resources