Skip to main content
Glama

Toys Hub

Server Details

Browse Toys Hub: products, prices in ALL, stock, delivery and checkout links. Read-only, no sign-in.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A3.7/5.0

Scored across 7 tools

Disambiguation4/5

Tools are mostly distinct: check_availability, get_shipping_quote, and get_product could be slightly confused around availability/shipping, but their descriptions clarify intent. create_cart_link vs buy-now links in get_product/search_products might confuse an agent, but the tool's purpose is clearly different (deferred checkout vs direct purchase). Overall, each tool has a clear role.

Naming Consistency4/5

Naming follows a consistent verb_noun pattern: check_availability, create_cart_link, get_product, get_shipping_quote, get_store_info, list_categories, search_products. All use lower_snake_case. Minor deviation: 'search_products' is more of an action than a simple 'get' or 'list', but it fits the pattern. No mixed casing.

Tool Count4/5

7 tools is a reasonable count for a shopping domain. It covers browsing, searching, product details, shipping, store info, and cart link creation. It feels slightly lean (no explicit cart management or order placement), but the scope is clearly defined as supporting an agent that helps shoppers find and initiate purchases. Not excessive.

Completeness3/5

The tool set covers searching, browsing categories, product details, availability, shipping, store info, and a cart-link creation. However, it lacks tools for order status, payment processing, or managing the cart beyond creating a link. There is no 'add_to_cart' or 'place_order' tool, but since cart link creation offloads that to the store, the gap is acceptable. Still, an agent might need to handle returns or payment questions—but those are covered by get_store_info.

Available Tools

7 tools
check_availabilityCheck availabilityB
Read-onlyIdempotent
Inspect

Whether a product can be ordered now in the wanted quantity.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYes
quantityNo

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds the real-time aspect ('now') but nothing else about side effects, rate limits, or response format. Given the strong annotation coverage, this is acceptable but not exceptional.

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 a single sentence with zero filler. It directly states the tool's purpose without unnecessary elaboration, making it easy to parse.

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

Completeness3/5

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

Given the simple schema and read-only annotations, the description is minimally sufficient. However, it does not specify the return value (likely boolean) or any constraints on availability (e.g., stock vs. shipping). For a basic tool this might suffice, but a clearer statement of the expected output would improve completeness.

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

Parameters2/5

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

Schema coverage is 0% and the description does not explain what 'slug' refers to (presumably product identifier) or the meaning of 'quantity' beyond 'wanted quantity'. The schema provides defaults and bounds for quantity, but the description does not compensate for the lack of param documentation. An agent would need to infer slug's purpose.

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 checks whether a product can be ordered in a given quantity. It uses a specific verb ('check availability') and resource ('product'), and it distinguishes itself from siblings like get_product (which fetches product details) and search_products (which finds products). No ambiguity.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives. It doesn't mention that this is for verifying order feasibility before cart creation, or that it should not be used for product details (use get_product). The context is implied by the name but not explicitly stated.

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

get_productProduct detailsA
Read-onlyIdempotent
Inspect

Everything about one product: description, price, availability, age range, brand, photos, rating, delivery and payment facts, and a buy-now link.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoLanguage of names, descriptions and links: "sq" Albanian, "en" English.en
slugYesProduct slug (from search_products).

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the safety profile is well covered. The description adds value by disclosing the response contents—photos, rating, delivery/payment facts, buy-now link—which is important since there is no output schema. The described behavior is fully consistent with the annotations.

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?

A single sentence with the scope front-loaded ('Everything about one product') followed by a dense, comma-separated field list. There is no filler and no repetition of schema or annotation information.

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 a two-parameter read-only tool, the combination of schema (100% parameter coverage), annotations (read-only/idempotent), and the field-list description gives an agent everything needed to call it and understand the return. The main gap is absence of explicit guidance about when to choose this over narrower siblings, which is a minor omission for a simple detail endpoint.

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%, and both lang (enum with meaning) and slug (from search_products) are already documented in the schema. The description adds nothing about parameter format or defaults beyond what the schema provides, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Everything about one product' and enumerates the exact fields (description, price, availability, age range, brand, photos, rating, delivery/payment facts, buy-now link), making the verb+resource and scope explicit. It clearly refers to a single product rather than lists or store-level data, but it never names a sibling or states what it is not, so sibling differentiation is implicit in the field list.

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

Usage Guidelines3/5

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

The field enumeration implies the tool is the go-to for a complete product detail view, while targeted siblings like check_availability, get_shipping_quote, and create_cart_link cover single aspects. There is no explicit when-to-use or alternatives statement; the closest guidance is the schema hint that slug comes from search_products. That makes usage context discoverable but not proscriptive.

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

get_shipping_quoteDelivery costA
Read-onlyIdempotent
Inspect

Delivery cost and time for a city, and whether the order qualifies for free delivery.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoDelivery city, e.g. Tirana or Prishtina.
order_totalNoValue of the products, in the store currency.

TDQS

A3.5/5.0
Behavior3/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 covered. The description adds the key behavioral context: it reports cost, time, and a free-delivery boolean. However, it does not disclose return shape, units, or how the free-delivery threshold is determined, and there is no output schema to fill that gap.

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 a single sentence with no filler, front-loading the core outputs (delivery cost, time) and adding the free-delivery qualifier. It is appropriately concise for a simple tool.

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

Completeness3/5

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

For a two-parameter read-only tool, the description names the inputs and outputs concisely. However, there is no output schema, and the schema marks zero parameters as required; the description does not clarify whether city is mandatory or how the response is structured. This creates meaningful ambiguity for an agent deciding how to call the 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%, so the baseline is 3. The description reinforces that city affects cost/time and order_total affects free-delivery eligibility, which is useful, but it adds no detail beyond what the schema already provides and does not clarify optionality or requiredness.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: return delivery cost, delivery time, and free-delivery eligibility for a city/order. It is specific enough to distinguish it from typical product or availability tools, though it lacks an explicit verb like 'calculates' or 'returns'.

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

Usage Guidelines3/5

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

The description implies when to use this tool—whenever delivery cost, time, or free-delivery qualification is needed—but it does not explicitly state when not to use it or point to alternatives such as check_availability. The context is clear, but exclusions and sibling differentiation are missing.

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

get_store_infoStore informationA
Read-onlyIdempotent
Inspect

Who the store is and how buying works: delivery countries, cost and time, payment methods, returns, currency, languages and contact.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoLanguage of names, descriptions and links: "sq" Albanian, "en" English.en

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description does not need to state that this is a safe read operation. It adds no further behavioral details such as authentication or data freshness, but it also contradicts no annotations.

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 one compact sentence with a front-loaded summary ('Who the store is and how buying works') followed by a concise list of covered topics. Every phrase earns its place, and no redundant clauses appear.

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 a simple read-only lookup with one optional parameter and no output schema, the description adequately enumerates the returned content. A short usage-note distinguishing it from shipping/availability siblings would improve completeness, but nothing essential for invoking the tool is missing.

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?

The only parameter, lang, has 100% schema description coverage, so the description does not need to explain it. The description's mention of 'languages' refers to store information content rather than the parameter, but the schema removes ambiguity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the resource—store-level information—and lists specific content areas: delivery countries, cost/time, payment methods, returns, currency, languages, and contact. It does not simply restate the title, and its store-wide scope helps distinguish it from product/search/shipping siblings, though it lacks an explicit verb.

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

Usage Guidelines3/5

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

The enumerated topics imply when to call this tool: when the user needs delivery, payment, return, or contact information. However, it never explicitly contrasts with alternatives like get_shipping_quote or check_availability, so routing must be inferred from the field list rather than direct guidance.

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

list_categoriesCategoriesA
Read-onlyIdempotent
Inspect

All product categories with their slug, name, product count and page.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoLanguage of names, descriptions and links: "sq" Albanian, "en" English.en

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, covering safety. The description adds the return fields, but 'page' is ambiguous (URL vs. page number) and it does not clarify pagination behavior or ordering. Since the safety profile is covered, a 3 is appropriate.

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?

A single, front-loaded sentence that states the core action and the returned fields with no redundancy. Every word contributes.

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 a simple read-only list tool with one optional parameter and no output schema, the description adequately specifies the return fields. Minor gaps remain: ambiguity around 'page' and lack of ordering/limit details, but these are not critical for correct invocation.

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?

The only parameter 'lang' is fully documented in the schema with enum and default, achieving 100% schema description coverage. The tool description adds no additional parameter information, so the baseline of 3 applies.

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 lists all product categories and enumerates the fields returned (slug, name, product count, page). It is distinct from all sibling tools, none of which focus on categories, so an agent can easily identify its purpose.

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 context is clear: use this when you need the full list of product categories. It does not explicitly name alternatives or exclusions, but given the sibling set, no other tool overlaps with category listing, so the intended usage is straightforward.

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

search_productsSearch productsA
Read-onlyIdempotent
Inspect

Search Toys Hub's catalogue by words, category, age and price. Returns name, price, availability, photo, product page and a buy-now link for each match.

ParametersJSON Schema
NameRequiredDescriptionDefault
ageNoChild's age in years; returns products suitable for that age.
langNoLanguage of names, descriptions and links: "sq" Albanian, "en" English.en
limitNo
queryNoWords to look for in names and descriptions (Albanian or English). Empty lists popular products.
categoryNoCategory slug from list_categories.
max_priceNoHighest price, in the store currency.
in_stock_onlyNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
productsYes
resultCountYes

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety and side effects. The description adds the return content (fields per match) which is useful but does not disclose other behavioral traits such as result limits, ordering, or handling of empty queries (though some are captured in parameter descriptions). It adds moderate value beyond annotations.

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 a single, efficient sentence that front-loads the core action and then lists outputs. There is no redundancy or filler; every clause contributes to understanding the tool's function and result.

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 a read-only search tool with an output schema and annotations covering safety, the description is nearly complete. It explains what the tool does and what it returns. The only minor gap is not mentioning that query can be empty (popular products) or that category slugs come from list_categories, but these are covered in the schema parameter descriptions, so nothing critical is missing.

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 71%, so most parameters are already described (age, lang, query, category, max_price). The description only mentions the filter dimensions (words, category, age, price) without adding semantics for the undocumented parameters (limit, in_stock_only). It does not compensate for the gaps, but the schema constraints (min/max, default) provide partial guidance, so a baseline 3 is appropriate.

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's purpose: searching the Toys Hub catalogue with specific filters (words, category, age, price) and lists the output fields (name, price, availability, photo, product page, buy-now link). It distinguishes from siblings like get_product (single item retrieval) and list_categories (category enumeration) by its explicit search-and-list behavior.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention alternatives like get_product for specific items or check_availability for stock queries, nor does it state any exclusion criteria. An agent must infer usage from the tool name and generic context.

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.

  1. 7 tool updates
    • First observedcheck_availability
    • First observedcreate_cart_link
    • First observedget_product
    • First observedget_shipping_quote
    • First observedget_store_info
    • First observedlist_categories
    • First observedsearch_products

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to query SoloTodo's product catalog, compare specs and prices, analyze price history, detect inflated offers, and review buyer evaluations through natural language.
    -
  • A
    license
    A
    quality
    B
    maintenance
    Search for products available in physical stores near you. Find prices, stock, and store locations for hardware, tools, and construction supplies. Useful when you need something today and can't wait for delivery. 5 tools: search products, search stores, get product details, get store details, list categories. No authentication required. Covers ~2400 products across ~4000 stores in Spain.
    18
    1
    Apache 2.0
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources