Skip to main content
Glama

catalog_search

Check which standard mechanical components are off-the-shelf, in which sizes and stocked lengths, before committing design dimensions.

Instructions

Browse the off-the-shelf catalog: which standard components actually EXIST, in which sizes, in which stocked lengths. Call it while designing, before you commit geometry to a number — it is the difference between a design somebody can build and one that needs a special.

The dimensional corpora (threads/bearings/stock) tell you what a part measures. This one tells you whether it is a thing you can buy. Nothing else in AnkusDrive knows that an ISO 4762 M4×12 is a stocked item and an M4×13 is not.

Every argument is an optional filter: family screw | set_screw | nut | washer | retaining_ring | pin | bearing | oring | threaded_rod standard a product standard or alias — "ISO 4762" or "DIN 912" kind the product's kind tag (socket_head_cap_screw, nyloc_nut, ...) size thread designation, nominal mm, shaft/bore mm, or AS568 dash length an exact stocked length, or a min_length/max_length window (mm) grade property class / material ("8.8", "A2-70", "NBR70") drive hex_socket | hex limit max rows (default 50)

Offline, deterministic, zero network.

Returns {ok, count, truncated, items, standards, fidelity, captured, market, not_covered}. Each item is {standard, name, family, kind, drive, size, size_kind, lengths (the stocked ladder, narrowed to any length filter), length_count, grades, length_measured, designation?}. Availability is a curated snapshot of a MARKET (see market and captured), not physics — and read not_covered before concluding from an empty result that a part does not exist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNo
sizeNo
driveNo
gradeNo
limitNo
familyNo
lengthNo
standardNo
max_lengthNo
min_lengthNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.9/5.0
Behavior5/5

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

No annotations are provided, so the description carries the full burden — and it does: 'Offline, deterministic, zero network' declares the side-effect profile, and it proactively warns that availability is 'a curated snapshot of a MARKET... not physics' and to 'read `not_covered` before concluding from an empty result that a part does not exist.' That is exactly the caveat an agent would otherwise get wrong.

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?

Front-loaded with the essential distinction and structured as filter list + return-shape list, so it scans well. It is somewhat long and includes a rhetorical 'somebody can build' clause, but nearly every sentence carries actionable 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?

With no output schema, the description fully enumerates the return envelope ({ok, count, truncated, items, standards, fidelity, captured, market, not_covered}) and the item shape, and it flags the truncation and market-fidelity semantics. An agent has everything needed to call it and interpret results.

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

Parameters5/5

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

Schema description coverage is 0% and there are 10 parameters, so the description must compensate — it documents every filter with example values and accepted vocabularies (family enum of 9 names, 'ISO 4762' or 'DIN 912' for standard, min_length/max_length window semantics, limit default 50). This adds meaning the bare anyOf/null schema does not.

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?

States a specific verb+resource ('Browse the off-the-shelf catalog') and then draws the exact boundary against adjacent tool families: 'The dimensional corpora (threads/bearings/stock) tell you what a part measures. This one tells you whether it is a thing you can buy.' An agent can distinguish it from catalog_nearest, list_thread_options and the geometry builders without opening a schema.

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

Usage Guidelines5/5

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

Gives explicit when ('Call it while designing, before you commit geometry to a number') and an explicit contrast with the tools it resembles, plus the consequence of skipping it ('the difference between a design somebody can build and one that needs a special'). The 'run this before you pick catalog_nearest/catalog_check' workflow is inferable from the stated sequencing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools