Skip to main content
Glama

Build a validated bill of materials

build_bom
Read-onlyIdempotent

Composes a complete BOM for a reference build — quantities, dated indicative prices, per-line rationale, a compatibility verdict for the chosen set, and a CSV export. Override any role with choices.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
choicesNorole → part id overrides
build_idYes2wd-robot, weather-station or plant-waterer
project_contextNoOne sentence on what you are building. Results are ranked for your project. Queries and this context are logged anonymously to power the public demo dashboard.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
csvYes
buildYes
linesYes
compatibilityYes

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so no contradiction. Description does not add behavioral details beyond the annotations (e.g., no mention of logging, but schema note covers logging). Credit for adding the 'override any role' capability, but that is more functional than behavioral.

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, no filler, front-loaded with the main purpose and outcomes. Efficiently communicates the tool's scope and customization feature.

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?

Given a simple 3-parameter tool with 100% schema coverage and an output schema, the description provides sufficient context for invocation. Mentions the compatibility verdict and CSV export, but does not explicitly state prerequisites (e.g., obtaining a valid build_id from list_builds), though that is inferable from siblings.

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 description coverage is 100%, so parameters are already documented. Description adds 'Override any role with choices' which clarifies the purpose of 'choices', but this is also implied by the schema ('role → part id overrides'). No significant additional meaning beyond schema.

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?

Description clearly states 'Composes a complete BOM for a reference build' with specific components (quantities, dated prices, rationale, compatibility verdict, CSV export). This is distinct from sibling tools like get_part or search_parts, which focus on individual parts.

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?

Context is clear: use for building a complete BOM for a reference build, with ability to override roles via choices. Does not explicitly mention exclusions or name alternative tools, but the purpose is self-evident and distinct from siblings.

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

A3.8/5.0
Disambiguation4/5

The core tools are distinct, but fetch/search are aliases of get_part/search_parts, and view_bom duplicates build_bom data. Descriptions clarify the aliases, so agents can disambiguate, but the redundancy introduces minor confusion.

Naming Consistency3/5

Most tools follow verb_noun (get_part, list_builds, check_compatibility). However, fetch and search are bare verbs, and fetch/get_part and search/search_parts show inconsistent verb choices for the same operation.

Tool Count5/5

11 tools is well-scoped for a parts catalogue with search, BOM, and compatibility features. Each tool has a clear role, and no obvious bloat.

Completeness4/5

The surface covers search, retrieval, provenance, comparison, compatibility, and BOM generation. Minor gaps: no direct enumeration of parts by category (only counts) and no CRUD, but for a read-only demo catalogue this is acceptable.

Resources