Skip to main content
Glama
paintbrushv

platworks-mcp

by paintbrushv

find_components

Find components by selecting a category from a fixed set. Calls with missing or unknown categories return refusals, guiding you to use only verified options for accurate results.

Instructions

Find all components in one category (closed vocabulary).

A missing category is returned as a typed missing_argument refusal; an unknown category as unknown_category. (The argument is declared optional so the refusal reaches the client as a payload instead of a framework-level validation crash.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoryNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

The description goes beyond typical expectations by explaining the behavior for missing and unknown categories, including the unusual design choice of declaring the parameter optional to ensure errors are returned as payloads rather than validation crashes. This is significant behavioral context that helps an agent understand error handling.

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 concise and well-structured. It front-loads the core purpose in the first sentence, then provides essential behavioral details in a clear parenthetical note. Every sentence adds value, and there is no wasted text.

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?

For a simple one-parameter tool with no output schema or annotations, the description covers the essential usage and error handling. It doesn't describe the return format or list valid categories, but those might be accessible through sibling tools like list_categories, and the closed vocabulary hint is sufficient for an agent to know how to proceed.

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

Parameters4/5

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

With 0% schema coverage, the description must compensate, and it does: it explains that category is a closed vocabulary and describes the error behaviors for missing and unknown values. It could mention that category is a string, but the schema already shows that, and the description adds meaningful semantics about the allowed values (closed set) and error handling.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource: 'Find all components in one category', and clarifies that the category is a closed vocabulary. It distinguishes itself from sibling tools by focusing on category-based retrieval rather than search or listing all components, though it doesn't name a specific sibling.

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 description clearly indicates when to use this tool: when you need components for a specific category, with a closed vocabulary. It doesn't explicitly name alternatives or exclusions, but the closed vocabulary hint and the semantic distinction from search_components and list_components provide adequate guidance.

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