Skip to main content
Glama

jdra_search_product_lines

Find product lines by partial name and resolve them to their corresponding IDs, enabling accurate reference in issue creation.

Instructions

제품군을 조회한다(이름→id 해석용). query 로 이름 일부 필터.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNo제품군 이름 일부 (생략 시 전체)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It discloses the read-style lookup and partial-name filtering behavior, but it does not describe the return format, matching semantics, or any edge behavior. This is adequate but not rich.

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?

Two short sentences front-load the purpose and then state the filtering behavior. There is no filler or redundant information.

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?

This is a simple tool with one optional parameter and no output schema. The description gives the purpose and filter behavior, and the '이름→id 해석용' purpose implies the return context. It lacks explicit return format details, but for this complexity level it is sufficiently complete.

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 schema already documents the query parameter. The description adds little beyond what the schema states about partial-name filtering, so the baseline of 3 applies.

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 states a clear action ('제품군을 조회한다') and a specific resource (product lines), with an explicit purpose ('이름→id 해석용'). This differentiates it from sibling search tools for projects, users, and customers.

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?

The phrase '이름→id 해석용' implies this tool is for resolving a product line name into an ID, and 'query 로 이름 일부 필터' gives the filtering mechanism. However, it does not explicitly mention alternatives or state when not to use this tool.

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