Tolstoy Shopper
Server Details
Search products, view details, and try items on across stores powered by Tolstoy.
- Status
- Healthy
- Uptime
- 100.0% over 40 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 3 tools
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.
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.
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.
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 toolsget_productGet product detailsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| productRef | Yes | Product reference token from search_products. |
TDQS
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.
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.
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.
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.
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.
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 storesARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of products to return. | |
| query | Yes | What the shopper is looking for. | |
| cursor | No | Pagination cursor from a previous search result. | |
| filters | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| productRef | Yes | Product reference token from search_products. |
TDQS
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.
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.
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.
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.
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.
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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
- First observed
get_product - First observed
search_products - First observed
try_on
Related MCP Connectors
Create ecommerce content and manage shoppable storefront experiences in your Tolstoy workspace.
Virtual try-on and on-model AI fashion photography: catalog search, try-on grids, HD delivery.
Visual fashion search across retailers and resale, with localized prices and app handoffs.
Shopping search across 100M+ products, with every retailer's offer and live price in one place.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to browse product catalogs, search products with filters, and initiate checkouts, generating order summaries and checkout URLs.-
- FlicenseNot gradedqualityCmaintenanceEnables users to search live products on crunchyfashion.in by keyword, collection, price and sort order, retrieve full details for individual items, and browse available collections — with results rendered as a shoppable, storefront-styled carousel or grid.-
- AlicenseAqualityDmaintenanceKlarna-style product discovery for AI shopping agents. Makes product catalogs machine-readable so AI agents can search, compare, and purchase products programmatically.6MIT
- FlicenseAqualityDmaintenanceEnables AI-powered shopping assistance by analyzing natural language shopping queries and automating product searches on multiple e-commerce platforms.13-
Glama MCP Gateway
Add one secure layer between your agents and this server.