discover_capabilities
List supported manufacturing processes, materials, and the fields an estimate accepts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List supported manufacturing processes, materials, and the fields an estimate accepts.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It clearly indicates a read-only listing operation and specifies the output categories (processes, materials, fields). This is transparent enough for a zero-parameter tool, though it omits output format details.
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 a single sentence with a clear verb-first structure. Every word earns its place, and there is no redundant information or 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?
Given the tool's simplicity (no parameters, no output schema), the description adequately explains what it returns. It covers the main categories but does not elaborate on how the fields relate to the estimate process or any optional behavior. Still, it is complete enough for a discovery 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 tool has zero parameters, so the schema covers everything. The description adds no parameter details, but the baseline for zero-parameter tools is 4 because there is nothing to clarify. It appropriately focuses on the output content.
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 the tool lists supported manufacturing processes, materials, and acceptable estimate fields. The verb 'List' is specific and the resource is well-defined, distinguishing it from sibling tools that focus on comparison, feedback, or estimation.
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 implies the tool is used to discover capabilities before estimating, but it does not explicitly state when to use it or mention alternatives. No reference to sibling tools like 'estimate_bom' or 'get_lead_time' is provided, so the agent has to infer context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool addresses a distinct aspect: discovery, single-part quotes, BOM estimation, process comparison, lead time, quote refinement, and DFM feedback. The slight overlap between request_quote and compare_processes is mitigated by their different purposes (single process vs. multi-process comparison).
Most tools follow a verb_noun pattern (compare_processes, request_quote, estimate_bom). dfm_feedback deviates because 'dfm' is not a verb, making it a minor inconsistency, but the overall naming remains readable and predictable.
Seven tools is well-scoped for a manufacturing estimation service. Each tool serves a distinct need with no redundancy, and the count is neither too sparse nor overwhelming for the domain.
The core workflow (discover capabilities, request quote, refine quote) is covered, along with BOM estimation and process comparison. However, there is no direct 'get_quote' tool to retrieve a previous estimate without refining it, which is a minor gap that can be worked around via refine_quote.