Skip to main content
Glama

Tolstoy Shopper

Server Details

Search products, view details, and try items on across stores powered by Tolstoy.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.6/5 across 3 of 3 tools scored. Lowest: 4/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: search_products finds products, get_product retrieves details for a specific product, and try_on launches a virtual try-on experience. There is no overlap between them, and descriptions reinforce what each does.

Naming Consistency5/5

All tool names follow a consistent lowercase verb_noun pattern (get_product, search_products, try_on). The pattern is predictable and easy to infer even without descriptions.

Tool Count4/5

Three tools is within the typical well-scoped range (3-15), but the set feels thin because the description of search_products references a browse_products tool that isn't actually included. The count is not excessive, but slightly below what the domain seems to require.

Completeness2/5

The tool set is missing a browse_products tool, which is explicitly referenced in search_products as the alternative for open-ended browsing. Additionally, the 'shopper' domain implies cart or checkout capabilities, but none are present, leaving obvious gaps in the shopping workflow.

Available Tools

3 tools
get_productGet product detailsA
Read-onlyIdempotent
Inspect

Load full details for one product by its productRef (from search_products or browse_products): description, price, media, the brand's real product videos, size guide, per-variant stock, and buy links.

Returns each variant's id and options (size/color). Use it to resolve the exact variantId the shopper wants before calling build_cart, and to answer fit/sizing questions from the size guide. The response includes the product image so it can be seen directly.

ParametersJSON Schema
NameRequiredDescriptionDefault
productRefYesProduct reference token from search_products.
Behavior5/5

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

Annotations already indicate readOnly, idempotent, and non-destructive. The description adds rich behavioral detail by enumerating the full set of returned data (description, price, media, videos, size guide, per-variant stock, buy links) and noting the response includes the product image, which goes beyond what annotations state.

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 tight paragraphs, front-loaded with the core purpose and followed by usage guidance and output specifics. Every sentence provides value without redundancy or filler.

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?

Given the tool's simplicity (one parameter, no output schema), the description is fully complete. It covers what the tool returns, how to use it, where the parameter comes from, and the downstream action (build_cart). Annotations cover safety, leaving no gaps.

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

Parameters5/5

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

The schema covers productRef with a basic description, but the tool description enhances it by explaining that productRef comes from search_products or browse_products and is used to identify the product. This adds meaningful context beyond the schema's one-line definition.

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 opens with 'Load full details for one product by its productRef', using a specific verb and resource. It clearly distinguishes this tool from siblings search_products and try_on by focusing on retrieving detailed product information for a single item.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs when to use: 'Use it to resolve the exact variantId the shopper wants before calling build_cart, and to answer fit/sizing questions from the size guide.' It also indicates the productRef comes from search_products or browse_products, providing clear context and sequencing.

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

search_productsSearch products across storesA
Read-onlyIdempotent
Inspect

Search the catalog by a specific free-text query (e.g. a product name, material, or occasion the shopper named). In marketplace mode, searches across every brand store on Tolstoy — one catalog, no store selection needed.

Use this only when the shopper names something specific to look for. For open-ended browsing, featured, best sellers, or a collection, use browse_products instead. When shopping a single brand, the optional filters (category/productType/tag) narrow the results. Each result carries a productRef; pass it to get_product for full details.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of products to return.
queryYesWhat the shopper is looking for.
cursorNoPagination cursor from a previous search result.
filtersNo
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds useful context about marketplace mode (searches across every brand store without store selection) and the productRef relationship to get_product. No contradictions.

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 compact and well-structured: first paragraph introduces the core action, second paragraph gives usage guidance and result handling. No filler or redundant information.

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?

For a read-only search tool with 4 parameters and no output schema, the description covers the essential context: when to use, what the query means, how filters work, and how to follow up via get_product. It is complete for an AI agent to select and invoke the tool effectively.

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 descriptions cover most parameters (75%), so the baseline is 3. The description adds meaning by elaborating on the query parameter with examples and explaining that filters narrow results for a single brand. This enhances the schema's basic descriptions.

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 tool searches the catalog by a specific free-text query, with examples of query types. It distinguishes itself from browse_products (open-ended browsing) and get_product (full details via productRef).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use: 'only when the shopper names something specific to look for.' It also names the alternative for other cases: 'For open-ended browsing, featured, best sellers, or a collection, use browse_products instead.'

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

try_onVirtual try-onAInspect

Opens an interactive virtual try-on for a product (by productRef from search_products): the shopper uploads their photo and gets a photorealistic image of themselves wearing the actual product — true to the real garment.

Only available for brands that enabled marketplace try-on; when unavailable, the response says so and the product can still be viewed via its store link.

ParametersJSON Schema
NameRequiredDescriptionDefault
productRefYesProduct reference token from search_products.
Behavior3/5

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

With no positive safety annotations (all false), the description carries the burden. It adds context about the interactive photo upload and availability limitation, but it doesn't disclose potential side effects (e.g., whether it changes any state) or describe what happens after the interactive session. The lack of explicit side-effect disclosure leaves some ambiguity.

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 concise sentences. The first clearly states the core functionality, and the second adds the availability caveat and fallback. No filler or unnecessary repetition.

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?

The description covers the essential context: what it does, how to get the input, availability constraints, and a fallback path. It doesn't describe the return value format, but for an interactive tool with no output schema, this may be acceptable. The description is fairly complete for a simple one-parameter tool.

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%: productRef is already described as 'Product reference token from search_products.' The description repeats this source information but adds no new parameter meaning beyond what the schema already provides. Baseline 3 applies here.

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 a specific action ('Opens an interactive virtual try-on') with a specific resource ('a product by productRef'). It also distinguishes itself from sibling tools by focusing on try-on functionality and referencing search_products for the product reference.

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 indicates when to use the tool (shopper wants virtual try-on) and provides a clear prerequisite (get productRef from search_products). It also notes an exclusions when the brand hasn't enabled try-on and offers an alternative ('viewed via its store link'), though it doesn't explicitly name a sibling tool as the alternative.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources