Skip to main content
Glama

star365 HQ

commerce_search_products

commerce_search_products
Read-onlyIdempotent

Search shop products or browse a category. Read-only, no money moves; runs as action=commerce.search through the Guardrail. You must give at least one of q (query) or category — browsing by category alone is fine, but leaving both empty is rejected. / 상점 상품 검색·카테고리 브라우징(읽기). q 와 category 중 최소 하나는 필수

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qNoSearch query. May be omitted if category is given. / 검색어 (category 지정 시 생략 가능)
limitNoMax items to return (up to 50, default 20). / 최대 반환 개수
cursorNoPagination cursor (optional). / 페이지네이션 커서(선택)
agent_idNoCalling agent id, for the audit trail. / 호출 에이전트 식별자(감사 추적용)
categoryNoCategory. May be omitted if q is given; category-only browsing is supported. / 카테고리 (q 지정 시 생략 가능)
max_priceNoMaximum price in points (optional). / 최대 가격(포인트, 선택)
min_priceNoMinimum price in points (optional). / 최소 가격(포인트, 선택)
idempotency_keyNoIdempotency key acp_<ULID>. Server generates one if omitted. / 멱등키. 생략 시 서버가 생성

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is largely covered. The description adds value beyond that by stating no money moves and that the call executes as action=commerce.search through the Guardrail, plus the rejection rule for empty inputs. It stops short of describing rate limits or result ordering.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded and short, with the core constraint stated early. The bilingual repetition (English then Korean) doubles the text for the same content, which is mildly wasteful, but the whole description is still compact and every sentence carries a rule.

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 an 8-parameter read-only search with no output schema, the description covers the operation, the Guardrail routing, and the key input constraint. It omits any hint of return shape or pagination behavior (cursor is only explained in the schema), which is a minor gap rather than a blocking one.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds a genuine constraint the schema does not express — the schema lists required: [] but the description enforces at-least-one of q or category — which is meaningful semantics beyond the structured fields.

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?

States a specific verb and resource ('Search shop products or browse a category') and clarifies the dual mode of operation. An agent can immediately distinguish this from siblings like commerce_build_cart, commerce_checkout, or commerce_order_status without opening any schema.

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?

Gives an explicit precondition: at least one of q or category must be supplied, and category-only browsing is allowed while both-empty is rejected. It does not, however, route the agent toward or away from any sibling tool for adjacent tasks such as building a cart after searching.

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.

Resources