Skip to main content
Glama

Get a full part record

get_part
Read-onlyIdempotent

The complete canonical record for one part: every attribute with its provenance (source, page, verbatim quote, file hash), vendors with dated indicative prices, and datasheet links.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPart id, e.g. pololu-drv8833-carrier
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
idYes
nameYes

TDQS

A4.3/5.0
Behavior4/5

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

The annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the description does not need to restate safety. It adds value by detailing what the canonical record contains—provenance, vendors, datasheet links—which lets the agent anticipate the response shape. It doesn't mention the privacy-logging behavior of project_context, but that is disclosed in the parameter schema, so no contradiction exists.

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?

The description is a single dense sentence that front-loads the core purpose ('complete canonical record for one part') and then efficiently enumerates the key record components. Every phrase earns its place without any filler or repetition of the title.

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 an output schema present, the description need not detail return fields; it instead gives the high-level data categories. Combined with the annotations (read-only, idempotent) and full schema coverage, this is adequate for a two-parameter get-by-id tool and leaves no critical gaps.

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%: both id and project_context have clear descriptions, including an example for id and a note about anonymous logging for project_context. The tool description adds no extra parameter-specific meaning, so it meets the baseline of 3 but does not exceed it.

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 starts with 'The complete canonical record for one part,' clearly establishing a get-one-part-by-id action with a specific resource. It enumerates the record's contents (attributes with provenance, vendor prices, datasheet links), which distinguishes it from siblings like search_parts or compare_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?

The phrase 'complete canonical record for one part' clearly implies using this when you have a known part id and need the full record, and the sibling tools (search_parts, compare_parts) set the context for alternatives. However, it never explicitly says 'use this when...' or names a specific alternative, so it falls just short of full explicit guidance.

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