catalogue
Server Details
French gluten-free product catalog and comparisons — verified prices and buyer ratings.
- Status
- Healthy
- Uptime
- 95.4% over 36 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2024-11-05
- URL
TDQS
Scored across 3 tools
Each tool has a distinct purpose: retrieving a single product by slug, listing comparative articles, and searching products with filters. No overlap or ambiguity.
All tool names follow the same verb_noun pattern with lowercase underscore: get_product, list_comparatifs, search_products. Consistent and clear.
Three tools is minimal but appropriate for a read-only catalogue server, covering the core needs of fetching, listing, and searching. Could be slightly more extensive but not inadequate.
The server provides essential read operations: get by slug, list comparatifs, and search. Missing a generic list all products or an update/create endpoint, but for a catalogue and comparison resource it is largely complete.
Available Tools
3 toolsget_productAInspect
Récupère la fiche complète d'un produit par son slug. Inclut : nom, marque, catégorie, description, verdict éditorial, prix, note rédaction, note Amazon, ASIN, URL produit gluten-free.fr et URL achat Amazon affiliée.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Slug produit (ex 'rummo-spaghetti-sans-gluten'). Liste complète disponible via search_products. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description must disclose side effects, but it only states retrieval. No explicit statement about read-only nature or potential errors, though it's implied as a GET-like operation.
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?
Single concise sentence listing included fields; no redundant or promotional content, 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?
Despite no output schema, the description explicitly lists the fields returned (name, brand, category, etc.), making the return content clear and sufficient for the tool's simple purpose.
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 fully describes the only parameter 'slug' with an example and a pointer to search_products; the tool description adds no extra parameter information beyond what the schema already provides.
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?
Clearly states it retrieves the complete product sheet by slug and enumerates the fields included, distinguishing it from the sibling tools (search and list).
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?
Implicitly guides usage by mentioning that the slug list is available via search_products, suggesting a search-then-fetch workflow, but does not explicitly state when to prefer this over siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_comparatifsAInspect
Liste les 8 comparatifs structurés disponibles avec, pour chacun, le slug, le titre éditorial, l'URL et la liste des slugs produits inclus dans le classement (ordre = ranking éditorial).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full disclosure burden. It states the exact contents of each entry (slug, title, URL, product slugs) and the fixed count of 8. It doesn't explicitly state it's read-only, but that is intuitively obvious for a list operation, so it provides sufficient behavioral context without surprises.
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 immediately states the tool's purpose and enumerates the returned data. There is no redundant filler, 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?
Given there is no output schema, the description fully explains what the tool returns: exactly 8 comparatifs, each with slug, title, URL, and product slugs in ranking order. This is sufficient for an agent to invoke and interpret the result correctly without further 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?
The tool has no parameters, and the schema is empty. The description correctly contains no parameter-specific information. Since the baseline for 0 parameters is 4, this is appropriate; there is nothing to add beyond the schema, and the description doesn't 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 uses a specific verb ('Liste') and resource ('les 8 comparatifs structurés') and clearly enumerates the exact fields returned for each item, which distinguishes it from sibling tools that focus on products or search.
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 tool is a parameterless list operation, so its purpose itself implies when to use it (to retrieve all comparisons). While it doesn't explicitly mention alternatives, the context of sibling tools (get_product, search_products) makes the distinction clear, but no explicit 'when not to use' guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_productsAInspect
Recherche dans le catalogue de produits sans gluten Amazon vérifiés. Filtre par catégorie (valeurs : 'epicerie' = pâtes/farines/sauces, 'snacking' = biscuits/madeleines, 'cuisine' = pains/farines pâtisserie, 'petit-dejeuner' = céréales/biscuits matin, 'boissons' = bières SG, 'livres' = guides). Filtre par marque (Schär, Rummo, Barilla, Gerblé, Caputo, etc.) ou par mots-clés (utiliser 'pates', 'pain', 'farine', 'biscuit' dans query pour chercher dans le nom). Retourne nom, marque, prix EUR, note rédaction /5, note Amazon /5, lien produit gluten-free.fr et lien achat Amazon affilié.
| Name | Required | Description | Default |
|---|---|---|---|
| brand | No | Filtre marque (ex 'Schär', 'Rummo'). | |
| limit | No | Nombre max de résultats (défaut 10, max 50). | |
| query | No | Mot-clé libre cherché dans le nom, la marque, la description (case-insensitive). | |
| category | No | Filtre catégorie : 'epicerie' (pâtes/farines/sauces), 'snacking' (biscuits), 'cuisine' (pains/farines pâtisserie), 'petit-dejeuner' (céréales), 'boissons' (bières SG), 'livres'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the transparency burden. It discloses return fields (nom, marque, prix, notes, liens) and mentions the limit parameter via context, but does not explain ordering, pagination, error behavior, or that the operation is read-only (though that is implicit for a search). It adds useful return-format details but remains somewhat superficial compared to possible behavioral caveats.
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 paragraph that front-loads the purpose and then lists filters and return fields. It is efficient with no fluff, though a slightly structured format (e.g., bullet points) could improve readability without adding length. Overall, it is appropriately compact for the information density.
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 no output schema and no annotations, the description adequately explains what the tool returns and how to filter. It covers all parameters and offers sufficient guidance for typical search use cases. It does not mention error handling or empty results, but for a search tool with optional filters, this is a minor gap. Siblings are unlikely to require additional 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 coverage is 100%, so the baseline is 3. The description adds extra value by giving concrete keyword suggestions (e.g., 'pates', 'pain', 'farine', 'biscuit') and expanding category examples beyond the schema's brief list. This goes slightly beyond the schema descriptions, enhancing usability.
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 its function: searching a verified gluten-free Amazon product catalog. It lists specific filters (category, brand, keywords) and returns a defined set of fields. It distinguishes itself from siblings (get_product, list_comparatifs) by being the search-oriented tool, though it does not explicitly name them.
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 guidance on how to use the tool: filter by category, brand, or keywords, with explicit examples for each. It implies this is the tool to use for searching the catalog, but does not explicitly mention alternative tools like get_product or list_comparatifs, nor does it state when not to use it. Thus clear context without exclusions.
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
list_comparatifs - First observed
search_products
Related MCP Connectors
Barcode lookup, nutrition search, and product comparison for 3M+ crowd-sourced food products.
Open Food Facts — collaborative food product database
French HACCP for restaurants: temperatures, DLC, allergens, DDPP controls, live recalls. Sourced.
Compare products, prices and current offers across UK retailers to find the best deal.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables Claude to search and analyze product listings from multiple French marketplaces, evaluating price, delivery, and distance to a reference point to find the best value.-
- FlicenseNot gradedqualityBmaintenanceScrapes Amazon France to provide Claude with product search, details, and price tracking with history.-
- FlicenseNot gradedqualityBmaintenanceEnables users to compare and get recommendations across multiple supermarket products, combining curated specifications with realtime price and review lookups.-
- AlicenseNot gradedqualityCmaintenanceEnables users to find and contact building tradespeople in France, and lets independent tradespeople create free profiles.Apache 2.0
Glama MCP Gateway
Add one secure layer between your agents and this server.