Skip to main content
Glama

find_similar_brands

Read-only

Given an active catalog brand name or merged alias, find similar brands using brand-profile vectors generated during product indexing. Unknown or ambiguous seeds return no brands. Returns up to 20 brands.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
brandYesBrand name (case-insensitive), e.g. "Rick Owens".
limitNo
countryNoOptional shopper location as an ISO-3166-1 alpha-2 country code (e.g. "US", "GB", "DE"). Recorded for analytics and used to improve future offer geo-matching. Omit if unknown — absence preserves current behavior.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
brandsYes

TDQS

A4.7/5.0
Behavior5/5

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

The description adds meaningful behavioral context beyond the readOnlyHint and destructiveHint annotations: it reveals the vector-based mechanism, the requirement for active/merged aliases, the 'returns no brands' edge case for unknown/ambiguous inputs, and a hard limit of 20 results. This gives the agent a clear model of what will happen.

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 two dense sentences, front-loaded with the core purpose, and every word provides useful information without redundancy. It efficiently covers the input constraint, mechanism, edge case, and output limit.

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

Completeness5/5

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

The combination of description, annotations, and output schema fully covers the tool's behavior. The description handles the key business logic (seed requirements, no results, cap), while the output schema presumably documents return structure, so no further explanation is needed.

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?

The schema already describes 'brand' and 'country' explicitly, and the description adds extra semantics for 'brand' (must be active or merged alias) and 'limit' (implied by 'Returns up to 20'). The description does not discuss 'country' beyond the schema, but the schema already covers it, so the marginal value is still positive.

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 verb 'find' and the resource 'similar brands', and specifies the method ('using brand-profile vectors generated during product indexing'). It also distinguishes from siblings like discover_brands and find_similar_products by focusing on brand similarity based on a seed brand.

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 provides clear context: the seed must be an 'active catalog brand name or merged alias', and unknown seeds return nothing. However, it does not explicitly name alternative tools or state when not to use this tool, such as 'for browsing all brands use discover_brands'.

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.7/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: brands vs. products, discover vs. similarity, filters vs. product details. The boundaries are clear even between discover_brands and find_similar_brands, thanks to explicit descriptions of when to use each.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case, using discover/find/get as verbs. The naming is uniform and predictable, with no mixed conventions or ambiguous synonyms.

Tool Count5/5

Six tools is an ideal size for a marketplace discovery server. Each tool has a clear purpose and collectively they cover search, similarity, filters, and retrieval without being bloated or sparse.

Completeness5/5

The tool surface covers the full discovery workflow: finding brands and products, refining by filters, getting similar items, and fetching detailed product data. No significant gaps are evident for the stated purpose of a fashion market search API.