Skip to main content
Glama

RoboParts 机器人零部件兼容性

search_components

搜索机器人零部件。可按品类、关键词筛选,返回匹配条目的摘要(id/name/category/manufacturer/关键规格/证据等级)。覆盖执行器、传感器、芯片、通信协议、接口、机器人平台、具身智能模型等 10 个品类。库存实时口径(总数/可选型/已隔离)见 initialize 的 instructions 或 GET /mcp 的 dataset 字段 —— 此处不写死数字,避免文案与真实库存漂移。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo返回条数上限,默认 10,最大 50(超出按 50 截断)。
keywordNo关键词,对 name / name_en / manufacturer / type / protocol / interface / description 七个字段做大小写不敏感的**子串**匹配(非分词、非模糊、不纠错)。**中英文命中集合可能完全不重叠**,务必两种都试:实测 "六维力" 命中 16 条、"force torque" 命中 2 条、交集为 0(部分国产条目尚无英文名)。多个词不做 AND 拆分,"harmonic drive 20Nm" 会被当作一整个串匹配,实测返回 0 条;请只给一个词(如 "harmonic" 命中 9 条),再用 category 收窄。
categoryNo品类精确筛选,取值必须来自 enum(严格相等,不做别名映射:传 "actuator"、"电机" 均返回空)。不传则跨全部 10 个品类检索。注意品类与 ID 前缀不是一一对应的,请以本字段为准。
include_market_intelligenceNo默认 false。库内另有 3 条市场情报条目(专利地图/咨询报告/趋势条目),它们不是可采购零件,默认不返回;仅在你确实想查行业研究材料时设为 true。

TDQS

A4.1/5.0
Behavior5/5

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

Even without annotations, the description reveals important behavioral traits: keyword does substring, case-insensitive, non-fuzzy matching; Chinese and English result sets may not overlap; multi-word queries are not AND-split; category values are exact with no aliases; market intelligence entries are hidden by default; and inventory metrics are intentionally not hardcoded to avoid drift. This goes far beyond a basic tool statement.

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 only three sentences, front-loads the purpose, and contains no redundant fluff. Every sentence contributes either to core functionality, scope, or a note about data freshness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers return summary fields, category scope, behavior of each parameter, and points to external sources for inventory metrics. However, it states '10 个品类' (10 categories) while the schema enum includes 11 values (including connectors, flexible_actuators, etc.), creating a factual mismatch that could mislead an agent. No output schema exists, but the summary field list partially compensates.

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 the baseline is 3. The description text adds no additional parameter-specific meaning beyond what is already in the schema's parameter descriptions. The only extra context is the note about inventory metrics, which is not parameter-related.

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 clearly states the tool 'searches robot components' with specific filters (category/keyword) and explicitly notes it returns summary entries (id/name/category/manufacturer/specs/evidence level). This distinguishes it from the sibling tool get_component_detail, which presumably returns full details.

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

Usage Guidelines3/5

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

Usage context is implied through the description of search behavior and parameter guidance (e.g., keyword matching, category exact match), but there is no explicit mention of when to use this tool versus alternatives like get_component_detail or check_compatibility. No exclusions or 'when not to use' guidance is provided.

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/5.0
Disambiguation3/5

多个工具处理重叠的任务:check_compatibility、review_compatibility 和 bom_compatibility_check 都涉及兼容性验证,其中前两个尤其相似,第二个使用了与第一个相同的引擎,可能是多余的。此外,search_components 和 semantic_search 重叠但具有不同机制。虽然这些描述有所澄清,但代理仍可能选择错误工具(例如,当简单检查就足够时使用了 review_compatibility)。

Naming Consistency3/5

大多数名称遵循 verb_noun 模式(get_component_detail、search_components、review_compatibility),但有几个偏差:semantic_search 是 adjective_verb 而非 search_semantic,而 bom_compatibility_check 将操作放在最后,与 check_bom_compatibility 相反。模式的不一致性削弱了可预测性。

Tool Count5/5

使用 9 个工具,组件覆盖了搜索、详情、参数语义、标准审计、推荐以及兼容性检查的多个变体——表面上足够广,但没有膨胀。每个工具针对不同的检索或分析需求,使其合理且可管理。

Completeness4/5

该表面涵盖了该领域的大部分关键功能:搜索、详情、语义标准化、标准审计、推荐以及通过三种模式进行的兼容性检查。缺失 CRUD 操作可能表明它是一个只读库,但没有任何接口来创建或更新部件,这限制了对数据库的管理。总体而言,对于查询和验证,覆盖范围相当完整,仅有边缘缺口。