MakerPortal compute
Server Details
Deterministic engineering solvers: biquad filter design, room eigenmodes, LLM VRAM fit.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
5 toolsbiquadDesignDesign one RBJ-cookbook biquad and report its numerical behaviour.AInspect
Design one RBJ-cookbook biquad and report its numerical behaviour.
The identical function that renders /lab/biquad/{type}/{freq}. Returns coefficients at the requested sample rate, coefficients at every other rate whose Nyquist limit clears the corner, pole/zero geometry, the −3 dB points solved by bisection, a Q sweep, a gain sweep where the type uses gain, and the quantised forms. The 240-point response curve is omitted unless include=curve is passed. Non-finite values (a notch is −∞ at f0; a low-pass is −∞ at Nyquist) are encoded as the strings "Infinity", "-Infinity" and "NaN" — JSON has no other honest option, and null would be a different answer.
Every result carries provenance.canonicalUrl — the published page for these exact inputs, or the lane hub when they are off the published grid.
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Filter Q. Defaults to the type’s own default. Shelves ignore it (S is fixed at 1, matching Web Audio). | |
| fs | No | Sample rate in Hz. Defaults to 48000. | |
| freq | Yes | Corner (or centre) frequency f0 in Hz. Must be below Nyquist. | |
| gain | No | Peak/shelf gain in dB. Ignored by types that do not use gain. | |
| type | Yes | Filter type. | |
| include | No | Optional heavy block to include, omitted by default. "curve": The 240-point log-spaced magnitude response, and one per sweep row. |
Output Schema
| Name | Required | Description |
|---|---|---|
| inputs | Yes | The parsed inputs, echoed back with defaults filled in. |
| result | Yes | The solved analysis. Shape is per-tool. |
| license | Yes | |
| provenance | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It fully discloses output composition, the omission of the response curve unless requested, quantised forms, non-finite value encoding as strings, and the provenance field. This is exceptionally transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but well structured: a one-sentence summary, a detailed list of returned values, an edge-case note on non-finite JSON encoding, and a provenance note. Every sentence adds operational value with no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers return values, optional heavy output, numerical edge cases, encoding decisions, and provenance. Even though an output schema exists, the description goes beyond what structured data alone would convey and leaves no important behavioral gap for an agent invoking this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% parameter description coverage with detailed explanations for q, fs, freq, gain, type, and include. The description adds little beyond the schema because the schema already documents defaults, ranges, and type-specific behavior like shelves ignoring q.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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: 'Design one RBJ-cookbook biquad and report its numerical behaviour.' It also names the URL route it mirrors and enumerates exactly what the result contains, so an agent can clearly tell what the tool does even without the schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context on what the tool is for and what optional include=curve controls. It does not explicitly name alternatives or exclusion conditions, but the sibling tools are unrelated to biquad design, so no exclusion is necessary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
llmVramFitDecide whether one LLM fits one accelerator, at every quantization.AInspect
Decide whether one LLM fits one accelerator, at every quantization.
The identical function that renders /lab/llm-vram/{model}/{gpu}. Returns one row per quantization (FP16 through Q3_K_M) with weight bytes and their basis, headroom, the largest context that fits, and the bandwidth-limited decode ceiling; plus the chosen best-fitting quant, the full-precision row, and a five-state verdict. Model geometry comes from each repo’s own config.json and tensor-shape index; accelerator capacity and bandwidth come from the site’s device table.
Every result carries provenance.canonicalUrl — the published page for these exact inputs, or the lane hub when they are off the published grid.
| Name | Required | Description | Default |
|---|---|---|---|
| gpu | Yes | Accelerator slug. | |
| batch | No | Concurrent sequences sharing the cache. Omit it for the published page's 1. | |
| model | Yes | Model slug. | |
| context | No | Context length in tokens used for the headline verdict. Omit it and the solver takes its own default of 8192, which is what the published page states. | |
| kvBytes | No | Bytes per KV cache element: 2 for FP16/BF16 cache, 1 for an 8-bit cache. Omit it for the published page's 2. |
Output Schema
| Name | Required | Description |
|---|---|---|
| inputs | Yes | The parsed inputs, echoed back with defaults filled in. |
| result | Yes | The solved analysis. Shape is per-tool. |
| license | Yes | |
| provenance | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosing behavior, and it does so substantively: it lists the returned fields, mentions the five-state verdict, describes data sources (config.json, tensor-shape index, device table), and notes the provenance canonicalUrl behavior for on-grid versus off-grid inputs. It does not discuss error cases or performance, but for a read-only sizing tool the disclosure is thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is four sentences long and front-loads the core purpose before moving to output details, data sources, and provenance. Each sentence carries meaningful information, though the first sentence slightly overlaps with the tool title. Overall it is efficient for the complexity of the tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose, output shape, key inputs, data provenance, and the extra provenance behavior for off-grid inputs. Since an output schema exists and is rich, the description does not need to enumerate return fields further. An agent has enough context to select and invoke this tool correctly without additional documentation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3; the description does not need to repeat parameter details. It adds minor context around model geometry and accelerator data sources, but the schema already documents model, gpu, batch, context, and kvBytes precisely. The description neither contradicts nor materially extends the schema semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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: 'Decide whether one LLM fits one accelerator, at every quantization.' It further specifies the output (one row per quantization, plus a five-state verdict) and identifies the underlying page it mirrors, so there is no ambiguity about what the tool computes. It is clearly distinguishable from the unrelated sibling tools in the same group.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context by stating it is 'the identical function that renders /lab/llm-vram/{model}/{gpu}', which tells an agent exactly what question the tool answers and how it maps to published content. It does not explicitly enumerate when not to use it or name alternatives, but the context is strong enough that an agent can apply it correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
roomModesSolve the eigenmodes of a rectangular room.AInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| width | Yes | Room width in feet. | |
| height | Yes | Ceiling height in feet. | |
| length | Yes | Room length in feet. | |
| include | No | Optional heavy block to include, omitted by default. "modes": Every solved mode and the axial subset, with their (nx, ny, nz) orders. | |
| maxFreq | No | Highest 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
| Name | Required | Description |
|---|---|---|
| inputs | Yes | The parsed inputs, echoed back with defaults filled in. |
| result | Yes | The solved analysis. Shape is per-tool. |
| license | Yes | |
| provenance | Yes |
TDQS
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.
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.
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.
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.
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.
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.
roomShapeBandSolve the best rectangular room proportions for a given volume.AInspect
Solve the best rectangular room proportions for a given volume.
The identical function that renders /lab/room-shape/{lo}-{hi}. Give a room volume in cubic feet and get the proportions to build: the length and width as multiples of the ceiling height, the exact dimensions at your volume, the widest axial gap they leave, and how far those proportions sit from a full solve at your exact volume. Also returns the band the volume falls in, that band's guarantee across its whole range, and which Bolt constraints are active at the answer. Five bands cover 800-5,000 cubic feet; a volume outside that range is refused rather than served from the nearest band.
Every result carries provenance.canonicalUrl — the published page for these exact inputs, or the lane hub when they are off the published grid.
| Name | Required | Description | Default |
|---|---|---|---|
| volume | Yes | Room volume in cubic feet. Five bands cover 800–5000 ft³; anything outside that is a 400 naming the range, never an answer from the nearest band. |
Output Schema
| Name | Required | Description |
|---|---|---|
| inputs | Yes | The parsed inputs, echoed back with defaults filled in. |
| result | Yes | The solved analysis. Shape is per-tool. |
| license | Yes | |
| provenance | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility and delivers richly. It discloses the return contents, the volume band behavior, refusal of out-of-range input, and the presence of provenance.canonicalUrl on every result. It even clarifies that out-of-range volumes are refused rather than served from a neighboring band.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and then details outputs, constraints, and provenance in a logical order. It is somewhat verbose, and the sentence about the identical rendering function is slightly tangential, but nearly every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a single-parameter tool with an output schema, and the description covers input units, valid range, refusal behavior, output fields, band guarantees, and provenance. Nothing essential for an agent to decide whether to call it and what to expect is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds meaningful semantics beyond the schema: it specifies the valid volume range, the band structure, and the refusal behavior for out-of-range values, which helps the agent reason about valid inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb and resource: solving rectangular room proportions for a given volume. It is unambiguous about what the tool computes, but it does not explicitly distinguish itself from sibling tools such as roomModes, so it misses the top score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The usage context is implied: provide a room volume in cubic feet and receive proportions. It also gives a firm exclusion boundary by refusing volumes outside 800–5,000 cubic feet, but it never names alternatives or states when to prefer another tool, so the guidance is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
solenoidFieldSolve the on-axis magnetic field of an air-core solenoid.AInspect
Solve the on-axis magnetic field of an air-core solenoid.
The identical function that renders /lab/solenoid/{diameter}x{length}mm. Returns the centre field per amp-turn and at the requested turns and current, the on-axis profile out to three half-lengths, the span over which the field holds to within 1% and 5% of its centre value, the field at the coil mouth as a fraction of the centre, how far the infinite-solenoid shortcut mu0nI overstates the answer, and the turn count below which the closed form should not be used on this geometry. Dimensions are in millimetres. The field is exactly linear in turns x current, so only that product changes the answer.
Every result carries provenance.canonicalUrl — the published page for these exact inputs, or the lane hub when they are off the published grid.
| Name | Required | Description | Default |
|---|---|---|---|
| turns | No | Number of turns. Defaults to 1, which is what the published pages state (their figures are per amp-turn). The field is exactly linear in turns x current. | |
| length | Yes | Winding length along the axis, in millimetres. | |
| current | No | Winding current in amperes. Defaults to 1. Only the product of turns and current changes the answer. | |
| diameter | Yes | Mean winding diameter in millimetres. |
Output Schema
| Name | Required | Description |
|---|---|---|
| inputs | Yes | The parsed inputs, echoed back with defaults filled in. |
| result | Yes | The solved analysis. Shape is per-tool. |
| license | Yes | |
| provenance | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and does so well: it discloses the returned quantities, the linear dependence on turns x current, millimeter units, and the provenance URL behavior. It does not explicitly state that the operation is side-effect free, but the solver nature makes this sufficiently clear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact yet information-dense: three paragraphs move from operation to outputs to provenance conventions, with every sentence earning its place. There is no verbose repetition of schema fields or annotations.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists and the sibling tools are unrelated, the description is complete for correct invocation. It covers units, input semantics, result contents, the linear scaling behavior, and the provenance URL, leaving no critical gap for an agent deciding to call the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents all four parameters fully, so the baseline is 3. The description adds valuable cross-parameter semantics by explaining that only the product of turns and current changes the answer and that published figures are per amp-turn, helping the agent choose meaningful inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb-resource pair, 'Solve the on-axis magnetic field of an air-core solenoid,' and then enumerates the concrete outputs. This makes the tool's purpose unambiguous and clearly distinguishes it from the unrelated sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear context by stating that this is the identical function behind a published lab page, which helps an agent know when this tool is the right match. It does not explicitly list exclusions or alternatives, but none of the sibling tools is a plausible candidate for the same calculation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
- First observed
biquadDesign - First observed
llmVramFit - First observed
roomModes - First observed
roomShapeBand - First observed
solenoidField
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
AI-callable calculators and engineering models with real formulas. No hallucinated math.
Precision math engine for AI agents. 203 exact methods. Zero hallucination.
Deterministic reasoning stack for AI agents: simulate, decide & compute, plus cross-domain tools.
88 free engineering calculators: RF link budgets, LoRa/Meshtastic, PCB, solar, homelab. Keyless.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server providing embedded engineering calculators and code generators as tools for AI agents, enabling precise, deterministic embedded math and C code generation.2982MIT
- AlicenseAqualityAmaintenanceEnables deterministic solving of real-valued equation systems with up to six variables, providing certified solutions via interval contraction and Krawczyk verification, and honestly marking truncation when exhaustive search is incomplete—all offline with zero dependencies.2453-
- AlicenseAqualityAmaintenanceAirtight math tools an AI uses over MCP — 3.7M-theorem search, PSLQ constant ID, OEIS, real Lean kernel checks, applicability checklists. No LLM inside, no API key.1212Apache 2.0
- AlicenseAqualityAmaintenanceLLM deployment planner: given a model and a GPU, answers will it fit, will it hit your SLO, and what will it cost. Sizes VRAM and KV-cache from the model's real architecture, and labels every number measured, estimated, or unknown.52MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.