store
Server Details
Custom metal-print storefront: catalog search, product details, shipping, reviews. Read-only.
- 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.
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.
Tool Definition Quality
Average 4/5 across 11 of 11 tools scored. Lowest: 3.1/5.
Most tools target distinct purposes, but the synchronous/task pairs (check_photo_compatibility vs check_photo_compatibility_task, search_products vs search_products_task) create some overlap. The descriptions clearly differentiate by execution mode, reducing confusion.
All tools follow a consistent verb_noun snake_case pattern (check_, compare_, get_, search_, start_). Even the _task variants are systematically suffixed, maintaining predictability.
11 tools is well within the ideal 3-15 range and covers the store's domain without excessive granularity. Each tool serves a distinct customer-facing function, and the count feels appropriately scoped.
The tool set comprehensively covers the pre-sale customer journey: product discovery, comparison, recommendations, reviews, shipping, FAQs, store info, photo compatibility, and configuration. No obvious dead ends or missing essential operations for the apparent purpose.
Available Tools
11 toolscheck_photo_compatibilityCheck Photo CompatibilityARead-onlyIdempotentInspect
Start a non-diagnostic photo-suitability review. Pixel dimensions alone never prove quality or compatibility; with an explicit delivery country, returns only market-visible wall formats and directs the customer to the configurator crop/review flow.
| Name | Required | Description | Default |
|---|---|---|---|
| width | Yes | Photo width in pixels | |
| format | No | Image format (e.g. 'jpeg', 'png', 'heic', 'webp') | |
| height | Yes | Photo height in pixels | |
| country | No | Delivery country as ISO alpha-2 or alpha-3. Required before market-visible print formats can be shown. |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | |
| photo | No | |
| market | No | |
| country | No | |
| message | No | |
| format_note | No | |
| launch_gate | No | |
| recommendation | No | |
| review_factors | No | |
| _response_budget | No | |
| assessment_status | No | |
| configurator_note | No | |
| recommended_format | No | |
| available_print_formats | No | |
| compatibility_determined | No | |
| supported_upload_formats | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true. The description adds context beyond annotations by noting it's non-diagnostic, conditional on country, and directs customers to the configurator flow. No contradiction with annotations.
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 a single dense sentence of about 30 words, front-loaded with the main purpose. Every clause adds value: the caution, the conditional behavior, and the redirect. No fluff or redundancy.
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 rich schema coverage, output schema, and annotations, the description covers the key behavioral aspects: non-diagnostic nature, conditional on country, return of market-visible formats, and configurator flow. It lacks explicit mention of when to use this over the sibling task tool, but is otherwise complete for a read-only 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%, so the schema already documents all four parameters. The description reinforces the importance of 'country' and cautions about dimensions, but adds little new semantic detail beyond what the schema provides. Baseline 3 is appropriate.
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 it 'Start[s] a non-diagnostic photo-suitability review,' which is a specific verb+resource combination. It distinguishes itself by mentioning market-visible wall formats and directing to the configurator flow, but it doesn't explicitly differentiate from the sibling check_photo_compatibility_task.
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?
Provides clear context: 'with an explicit delivery country, returns only market-visible wall formats' indicates when to expect certain output. The caution that 'Pixel dimensions alone never prove quality or compatibility' implies this tool is needed for a proper review. However, it doesn't state explicit alternatives or when-not-to-use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_photo_compatibility_taskCheck Photo Compatibility TaskBInspect
Task-based non-diagnostic photo-suitability review for long-running MCP clients. Pixel dimensions alone never prove compatibility; use task polling to retrieve the result.
| Name | Required | Description | Default |
|---|---|---|---|
| width | Yes | Photo width in pixels | |
| format | No | Image format (e.g. 'jpeg', 'png', 'heic', 'webp') | |
| height | Yes | Photo height in pixels | |
| country | No | Delivery country as ISO alpha-2 or alpha-3. Required before market-visible print formats can be shown. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool is task-based and long-running, and that polling is required. However, it does not describe important behavioral aspects such as failure modes, rate limits, or the nature of the result object. This leaves significant gaps for safe usage.
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 consists of two concise sentences, but the first sentence is dense with jargon ('non-diagnostic', 'photo-suitability review'). While compact, clarity could be improved for new users. No structural issues, but could be more accessible.
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 mentions task-based execution and polling, which are essential for usage. However, it does not explain the output format, possible results, or error handling. Given the lack of an output schema, more detail on the pollable response would improve completeness.
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%, so the schema already provides clear definitions for all four parameters. The tool description adds no additional parameter-level meaning beyond what the schema offers. Per guidelines, baseline score of 3 is appropriate.
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 identifies the tool as a task-based photo compatibility check, specifically for long-running MCP clients. It distinguishes from the sibling 'check_photo_compatibility' by indicating this is a task/polling variant. The phrase 'non-diagnostic' is slightly ambiguous but overall purpose is clear.
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 advises using task polling to retrieve results and notes that pixel dimensions alone are insufficient. However, it does not explicitly state when to choose this tool over the synchronous alternative or provide exclusion criteria. Usage guidance is implied but not fully explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compare_productsCompare ProductsARead-onlyIdempotentInspect
Compare Bolot Studio products — Legacy Print vs Cinematic Print, or Bolot vs competitors (Displate, Canvas, Framed prints).
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | Locale code for localized URLs (e.g. 'en', 'pl', 'de') | |
| country | No | ISO 3166-1 alpha-2 or alpha-3 country code for localized URLs (e.g. 'PL', 'DE', 'GB', 'DEU', 'GBR') | |
| product_handle | No | Product handle for competitor comparison (defaults to 'the-legacy-print') | |
| comparison_type | Yes | Type of comparison |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | |
| market | No | |
| message | No | |
| product | No | |
| category | No | |
| comparison | No | |
| legacy_print | No | |
| sustainability | No | |
| vs_competitors | No | |
| cinematic_print | No | |
| differentiators | No | |
| shared_features | No | |
| _response_budget | No | |
| quality_assurance | No | |
| wall_art_launch_gate | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the agent knows this is a safe read-only operation. The description adds the specific comparison categories but does not disclose any additional behavioral traits such as output format, data sources, or potential limitations. Given the annotation coverage, this is acceptable but not especially rich.
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 a single, focused sentence that communicates the tool's purpose and key comparison modes without unnecessary words or repetition. It is front-loaded with the main action and resource, making it easy for an agent to quickly grasp.
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 has four parameters (one required), an output schema, and read-only annotations, the description covers the essential context: what is being compared and the two comparison modes. It does not need to explain return values since an output schema exists. A minor gap is the lack of explicit guidance on when to prefer this over sibling tools, but the overall context is sufficient for effective use.
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 input schema provides 100% coverage with descriptions for all four parameters, including the enum for comparison_type. The description adds some context by naming examples of the comparison types, but it does not further clarify locale, country, or product_handle beyond what the schema already states. Baseline 3 is appropriate when schema fully documents parameters.
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 compares Bolot Studio products with specific comparison types (Legacy vs Cinematic, or vs competitors like Displate, Canvas, Framed prints). The verb 'compare' plus the listed resources and comparison modes make the purpose unmistakable and distinguish it from sibling tools like get_product_recommendations.
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 provides clear context on what types of comparisons are supported (internal vs competitor), which implies when to use the tool. However, it does not explicitly state exclusions or alternatives, such as using get_product_recommendations for product suggestions rather than direct comparisons. Still, the purpose is specific enough that an agent can infer appropriate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_product_recommendationsGet Product RecommendationsARead-onlyIdempotentInspect
Get personalized product and variant recommendations based on customer intent, budget, recipient profile, room type, and lighting conditions.
| Name | Required | Description | Default |
|---|---|---|---|
| budget | No | Maximum budget in EUR | |
| intent | Yes | Customer intent: gift, home_decor, valentines, birthday_50, memorial, desk_display, home_cinema, etc. | |
| locale | No | Locale code for localized URLs (e.g. 'en', 'pl', 'de') | |
| country | No | ISO 3166-1 alpha-2 or alpha-3 country code for geo-pricing (e.g. 'PL', 'DE', 'GB', 'DEU', 'GBR') | |
| lighting | No | Room lighting: bright, dim, mixed | |
| room_type | No | Room type: living_room, bedroom, office, bathroom, kitchen, entertainment_room | |
| recipient_profile | No | Who is this for: partner, mother, father, man_who_has_everything, woman, couple, pet_lover, photographer, movie_fan |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| error | No | |
| message | No | |
| room_advice | No | |
| finish_advice | No | |
| total_matches | No | |
| recommendations | No | |
| _response_budget | No | |
| active_promotions | No | |
| wall_art_launch_gate | No | |
| address_sign_launch_gate | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, covering the safety profile. The description adds minimal extra behavioral context beyond these annotations, merely restating the input criteria. It does not disclose additional traits such as recommendation count, sorting, or response structure, but the output schema likely covers return format. No contradiction with annotations.
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 a single, concise sentence that front-loads the verb 'Get' and the resource, then enumerates key input dimensions. Every phrase earns its place; no filler or redundancy.
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 tool has a rich input schema (7 params, all documented) and an output schema, so the description does not need to explain return values. The description provides a clear summary of the tool's purpose and key inputs. It could add more context about when it's preferable over search_products, but given the schema richness, the description is sufficiently complete.
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 coverage is 100% with all parameters described. The description lists several parameters (intent, budget, recipient profile, room type, lighting) but adds no additional semantic meaning beyond what the schema already provides. It omits locale and country, but the schema fully documents these, so the description does not need to compensate.
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's function: 'Get personalized product and variant recommendations' with specific input criteria (intent, budget, recipient profile, room type, lighting). This specific verb+resource combination distinguishes it from sibling tools like search_products, which likely performs keyword-based search rather than context-driven recommendations.
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 implies usage when personalized recommendations are needed based on customer intent and other criteria, but it does not explicitly state when to use this tool versus alternatives (e.g., search_products). There is no mention of exclusions or alternative tools, so the guidance is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_reviews_summaryGet Reviews SummaryARead-onlyIdempotentInspect
Get aggregated customer review statistics and featured review excerpts. Use this when a customer asks about product quality, other customers' experiences, or social proof. Returns ratings, distribution, and highlighted reviews.
| Name | Required | Description | Default |
|---|---|---|---|
| product_handle | No | Product handle: 'the-legacy-print', 'the-cinematic-print', or 'the-address-sign'. Omit for store-wide stats. |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| error | No | |
| scope | No | |
| source | No | |
| message | No | |
| available | No | |
| total_reviews | No | |
| average_rating | No | |
| review_platform | No | |
| _response_budget | No | |
| featured_reviews | No | |
| verified_purchase_count | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, covering safety and idempotency. The description adds useful return semantics ('Returns ratings, distribution, and highlighted reviews') and the notion of 'featured' excerpts, which go beyond the schema. No contradictions found.
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?
Three concise sentences with no filler. The first sentence states the action, the second gives usage guidance, and the third lists return components. Every sentence contributes value and the structure is front-loaded.
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?
This tool has a single optional parameter, a rich output schema, and strong annotations. The description adds the practical use case and return summary, making it complete for selection and invocation. No further explanation of return values is needed given the output schema.
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 coverage is 100% and the parameter description is detailed ('Product handle: ... Omit for store-wide stats.') The tool description itself does not add parameter-related meaning, so the baseline of 3 is appropriate.
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 a specific verb and resource: 'Get aggregated customer review statistics and featured review excerpts.' It clearly distinguishes this tool from siblings like search_products or compare_products by focusing on review aggregation and social proof.
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?
It provides explicit when-to-use context: 'Use this when a customer asks about product quality, other customers' experiences, or social proof.' However, it does not explicitly mention when not to use it or name alternative tools, stopping short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_shipping_estimateGet Shipping EstimateARead-onlyIdempotentInspect
Get estimated delivery time, free shipping threshold, and carrier information for a specific country. Use this when a customer asks about shipping costs or delivery times to their location.
| Name | Required | Description | Default |
|---|---|---|---|
| country_code | Yes | ISO 3166-1 alpha-2 or alpha-3 country code (e.g. 'PL', 'DE', 'GB', 'FR', 'DEU', 'GBR') |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | |
| carrier | No | |
| message | No | |
| returns | No | |
| tracking | No | |
| supported | No | |
| country_code | No | |
| free_shipping | No | |
| shipping_cost | No | |
| _response_budget | No | |
| delivery_estimate | No | |
| manufacturing_note | No | |
| supported_countries | No | |
| total_estimated_time | No | |
| wall_art_launch_gate | No | |
| tax_duty_handling_note | No | |
| address_sign_launch_gate | No | |
| tax_duty_handling_setup_dependent | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so the safety profile is covered. The description adds output details (delivery time, threshold, carrier) but does not disclose edge cases or error behavior. Adequate given annotation coverage.
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?
Two sentences, front-loaded with action and outputs, then usage guidance. No filler words or redundancy.
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 simple read-only tool with one parameter, an output schema, and strong annotations, the description provides essential purpose, scope, and usage context. It is complete for an agent to select and invoke the tool correctly.
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 covers country_code with ISO 3166-1 alpha-2/alpha-3 examples, achieving 100% coverage. Description adds no additional parameter meaning beyond reinforcing the country scope, so baseline 3 applies.
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?
Description states a specific verb 'Get' with three concrete outputs (delivery time, free shipping threshold, carrier information) scoped to a specific country, clearly distinguishing it from sibling tools like product search or store info.
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?
Includes explicit usage instruction 'Use this when a customer asks about shipping costs or delivery times to their location,' providing clear context. It doesn't mention alternatives or exclusions, but no direct sibling alternative exists.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_store_infoGet Store InfoARead-onlyIdempotentInspect
Get Bolot Studio brand information, shipping zones, payment methods, and configurator URLs. Essential context for helping customers.
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | Locale code used when country is not supplied | |
| country | No | ISO 3166-1 alpha-2 or alpha-3 country code for market-visible catalog sizes/prices (e.g. 'DE', 'DEU') |
Output Schema
| Name | Required | Description |
|---|---|---|
| b2b | No | |
| brand | No | |
| error | No | |
| market | No | |
| message | No | |
| products | No | |
| policy_urls | No | |
| finish_guide | No | |
| free_shipping | No | |
| sustainability | No | |
| payment_methods | No | |
| _response_budget | No | |
| active_promotions | No | |
| configurator_urls | No | |
| quality_assurance | No | |
| agent_instructions | No | |
| shipping_by_country | No | |
| wall_art_launch_gate | No | |
| address_sign_launch_gate | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so the description does not need to restate safety. It adds value by enumerating the exact content categories returned (brand info, shipping zones, payment methods, configurator URLs), which goes beyond the tool name. 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 two concise sentences, front-loaded with the key value and free of fluff. 'Essential context for helping customers' is brief and meaningful, though slightly vague.
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 output schema exists and annotations cover safety, the description sufficiently lists the data categories covered. It is complete enough for an agent to know what to expect, though it could slightly benefit from noting locale/country influence on returned data (already captured in schema).
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 provides full descriptions for both parameters (locale and country), including examples and semantics. The description does not add parameter-level detail, but the schema's 100% coverage makes this acceptable baseline.
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 retrieves Bolot Studio brand information, shipping zones, payment methods, and configurator URLs, using a specific verb ('Get') and resource scope. This distinguishes it from sibling tools like search_policies_and_faqs or get_product_recommendations, which focus on other domains.
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 provides a general context—'Essential context for helping customers'—implying when to use the tool, but it does not explicitly state when to use it over alternatives or any exclusion criteria. Sibling tools are not named or contrasted.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_policies_and_faqsSearch Policies and FAQsARead-onlyIdempotentInspect
Search Bolot Studio FAQs and store policies. Covers product questions, sizing, finishes, shipping, returns, and ordering.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query (e.g. 'returns', 'shipping to Germany', 'matte vs glossy', 'desk stand') | |
| locale | No | Locale code for localized policy URLs (e.g. 'en', 'pl', 'de') | |
| country | No | ISO 3166-1 alpha-2 or alpha-3 country code for locale-aware policy URLs (e.g. 'PL', 'DE', 'GB', 'DEU', 'GBR') |
Output Schema
| Name | Required | Description |
|---|---|---|
| faqs | No | |
| error | No | |
| locale | No | |
| message | No | |
| policy_links | No | |
| total_matches | No | |
| locale_fallback | No | |
| _response_budget | No | |
| returned_matches | No | |
| shipping_by_country | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=false, and idempotentHint=true, so the safety profile is clear. The description adds no extra behavioral context like pagination, authentication, or locale-specific behavior, but it does not contradict annotations.
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 a single, front-loaded sentence that directly states purpose and key coverage topics. No filler words or redundant details.
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 low complexity of a search tool, the presence of an output schema, and strong annotations, the description sufficiently captures the tool's purpose and scope. It clearly defines what is searched and which topics are covered, with no missing critical context.
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%, with each parameter (query, locale, country) already described with examples. The description does not add additional parameter semantics beyond the schema's own 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 Bolot Studio FAQs and store policies, with a specific verb and resource. It also lists coverage areas (product questions, sizing, finishes, shipping, returns, ordering) that distinguish it from sibling product search tools like search_products.
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 implies usage for policy/FAQ questions via the coverage list, but it does not explicitly say when to use this tool instead of alternatives such as search_products or get_store_info. No exclusions or alternative recommendations are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_productsSearch ProductsARead-onlyIdempotentInspect
Search and browse Bolot Studio custom metal photo prints. Returns a compact product card by default — handle, title, short description, price/compareAtPrice, availability, variants (name/size/price/availability), one image, and the product URL — for every result. For ONE product (pass handle), add detail: true to also get the AI summary, use cases, FAQs, competitive positioning, social proof, gallery, shipping zones, and guarantee/returns/quality-assurance detail; every response, compact or detailed, is capped to the server's response size limit.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Search term (e.g. 'metal print', 'gift', 'cinematic') | |
| detail | No | Only used together with `handle` (single-product lookup). When true, returns the full enriched product record — AI summary, use cases, FAQs, competitive positioning, social proof, gallery, shipping zones, guarantee/returns/quality-assurance detail — for that ONE product, still capped to the server's response size limit. Default false returns the compact card shape (handle, title, short description, price, variants, one image, product URL) that every search and every default single-product lookup uses. | |
| handle | No | Product handle: 'the-legacy-print', 'the-cinematic-print', or 'the-address-sign' | |
| locale | No | Locale code for localized URLs (e.g. 'en', 'pl', 'de') | |
| country | No | ISO 3166-1 alpha-2 or alpha-3 country code for geo-pricing (e.g. 'PL', 'DE', 'GB', 'DEU', 'GBR') |
Output Schema
| Name | Required | Description |
|---|---|---|
| b2b | No | |
| url | No | |
| faqs | No | |
| tags | No | |
| tool | No | |
| error | No | |
| price | No | |
| query | No | |
| title | No | |
| total | No | |
| handle | No | |
| images | No | |
| market | No | |
| reason | No | |
| vendor | No | |
| dropped | No | |
| gallery | No | |
| gifting | No | |
| message | No | |
| options | No | |
| product | No | |
| returns | No | |
| material | No | |
| products | No | |
| shipping | No | |
| variants | No | |
| guarantee | No | |
| updatedAt | No | |
| use_cases | No | |
| ai_summary | No | |
| description | No | |
| launch_gate | No | |
| limit_bytes | No | |
| productType | No | |
| availability | No | |
| finish_guide | No | |
| social_proof | No | |
| customization | No | |
| featuredImage | No | |
| ai_description | No | |
| compareAtPrice | No | |
| localized_urls | No | |
| product_nature | No | |
| proof_workflow | No | |
| shipping_zones | No | |
| sustainability | No | |
| descriptionHtml | No | |
| _response_budget | No | |
| active_promotions | No | |
| available_handles | No | |
| available_locales | No | |
| quality_assurance | No | |
| product_comparison | No | |
| wall_art_launch_gate | No | |
| configuration_contract | No | |
| competitive_positioning | No | |
| address_sign_launch_gate | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, and idempotentHint. The description adds value beyond these by disclosing the response shape (compact vs detailed), the condition for getting the enriched record, and a notable trait: every response is capped to the server's response size limit. No contradictions with annotations.
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 one long, information-dense sentence, but it is front-loaded with purpose and return-shape. Every clause contributes necessary details (what the card contains, when to use detail, response cap). It could be split into shorter sentences for readability, but there is no wasted content.
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 presence of an output schema, annotations, and 5 well-documented parameters, the description covers the essential operational semantics: default vs detail mode, parameter interplay, and response size limitation. It does not explain error cases or rate limits, but those are not strictly required for a read-only search tool with this level of schema support.
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%, so the baseline is 3. The description goes further by explicitly linking the 'handle' and 'detail' parameters, explaining what each return mode includes (compact card fields vs full enriched record), and noting that 'detail' is only effective when 'handle' is provided. This adds relationship semantics not fully captured in the schema.
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 starts with a specific verb+resource combination: 'Search and browse Bolot Studio custom metal photo prints.' It clearly distinguishes itself from sibling tools like compare_products and get_product_recommendations by being the general search/browse endpoint. The return shape is also described precisely (compact product card), which anchors the tool's purpose.
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 gives clear context on when to use the tool and its modes: search/browse for all products, and single-product lookup with 'detail: true' when you pass a handle. It does not explicitly name alternatives or exclusions (e.g., 'for comparisons use compare_products'), but the instructions for switching modes are unambiguous and sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_products_taskSearch Products TaskAInspect
Task-based product search for long-running MCP clients. Use task polling to retrieve the result.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Search term (e.g. 'metal print', 'gift', 'cinematic') | |
| detail | No | Only used together with `handle` (single-product lookup). When true, returns the full enriched product record — AI summary, use cases, FAQs, competitive positioning, social proof, gallery, shipping zones, guarantee/returns/quality-assurance detail — for that ONE product, still capped to the server's response size limit. Default false returns the compact card shape (handle, title, short description, price, variants, one image, product URL) that every search and every default single-product lookup uses. | |
| handle | No | Product handle: 'the-legacy-print', 'the-cinematic-print', or 'the-address-sign' | |
| locale | No | Locale code for localized URLs (e.g. 'en', 'pl', 'de') | |
| country | No | ISO 3166-1 alpha-2 or alpha-3 country code for geo-pricing (e.g. 'PL', 'DE', 'GB', 'DEU', 'GBR') |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the key asynchronous behavior: results must be retrieved via polling. Since no annotations are provided, the description carries the full burden, but it does not mention read-only nature, error handling, or how to start the task beyond the polling hint. It adds some context but leaves gaps.
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 only two sentences, front-loading the purpose and the critical polling instruction. Every word contributes value with no fluff, making it highly concise and well-structured.
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 tool's asynchronous nature and lack of output schema mean the description should clarify the task/result flow. It points to polling, but does not explain what the task response looks like, how to poll, or any timeouts. The schema is rich, but the description leaves some important context out, making it adequate but not fully complete.
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 input schema covers 100% of parameters with descriptive text for each (query, detail, handle, locale, country). The tool description itself adds no parameter-level meaning, but the schema already handles parameter semantics thoroughly, so a baseline of 3 is appropriate.
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 it is a product search tool using a task-based mechanism for long-running MCP clients. It uses a specific verb ('search') and resource ('products'), and differentiates itself from the sibling 'search_products' by emphasizing the asynchronous, polling-based nature.
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?
It gives guidance on when to use this tool: for long-running MCP clients. It also instructs to use task polling to retrieve the result. However, it does not explicitly name alternatives like 'search_products' or state when not to use this tool, though the sibling context implies it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_configurationStart ConfigurationARead-onlyIdempotentInspect
Generate a direct URL to the Bolot Studio product configurator with pre-selected options. Optionally pre-select size and/or finish ('matte' or 'glossy'). Valid sizes are product-specific: 'the-legacy-print' accepts 'keepsake-3-pack' (three separate 13×9 cm panels with three separate metal desk stands), 'classic' (30×20), or 'statement' (42×30); 'the-cinematic-print' accepts 'intimate' (21×14), 'classic' (30×20), or 'statement' (42×30); 'the-address-sign' uses templates and ignores size/finish.
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | Pre-select size. Valid set depends on the product: 'the-legacy-print' → 'keepsake-3-pack', 'classic', or 'statement'; 'the-cinematic-print' → 'intimate', 'classic', or 'statement'. The retired single token 'keepsake' is never accepted. | |
| finish | No | Pre-select finish. Not applicable to address sign. | |
| locale | No | Locale code (en, de, pl, etc.) | |
| country | No | ISO 3166-1 alpha-2 or alpha-3 country code for market-visible product availability (e.g. 'DE', 'DEU') | |
| product_handle | Yes | Product to configure |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| error | No | |
| locale | No | |
| market | No | |
| message | No | |
| product | No | |
| launch_gate | No | |
| valid_sizes | No | |
| instructions | No | |
| pre_selected | No | |
| requested_size | No | |
| _response_budget | No | |
| configurator_url | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so the description doesn't need to repeat safety traits. It adds valuable behavioral context beyond the schema, such as the address sign ignoring size/finish and specific physical dimensions for each size token.
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 a single, dense paragraph that front-loads the purpose and then provides product-specific rules. Every clause adds value, though it is slightly verbose due to the detailed size specifications. It is appropriately structured for the complexity.
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, combined with the full schema descriptions and annotations, thoroughly covers the tool's behavior. It specifies valid size/finish combinations, all product handles, and the address sign exception. Given the output schema exists, return values needn't be described.
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 coverage is 100% with each property described, but the description adds meaningful detail beyond the schema, including physical dimensions (13×9 cm panels, 30×20, 42×30) and the address sign's template behavior. This enriches the parameter semantics.
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 generates a direct URL to the product configurator with pre-selected options, using a specific verb 'Generate' and a clear resource. It distinguishes itself from sibling tools that search, compare, or fetch product info.
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?
It provides detailed context on valid sizes per product and explicitly notes the address sign ignores size/finish, guiding correct usage. However, it does not explicitly name alternative tools or state when not to use this tool, so it lacks explicit exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Flicense-qualityDmaintenanceEnables interaction with e-commerce storefronts through a standardized API. Provides access to product catalogs, inventory management, and customer operations for online retail platforms.
- Flicense-qualityFmaintenanceEnables AI assistants to query and interact with Shopify store data via the Storefront API, including products, collections, carts, and customer information.9

Estroni Storefront MCPofficial
Alicense-qualityDmaintenanceRead-only MCP server for the Estroni online store, allowing AI agents to search products, fetch product details, list collections, and retrieve shipping/return policies.MIT- Alicense-qualityCmaintenanceEnables interaction with Shopify store data via the GraphQL Admin API to manage products, customers, orders, and collections. Supports multi-store configurations and provides comprehensive management tools for e-commerce administration in both local and remote environments.81MIT