Fondouk (PrestaShop demo store)
Server Details
Query a live PrestaShop e-commerce store: search the catalog, get product details, real-time prices and stock. Fondouk is an open-source module (MIT) that makes any PrestaShop store speak MCP and UCP — this connector is its public demo store. Read-only, public data 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.2/5 across 3 of 3 tools scored.
All three tools have clearly distinct purposes: get_product retrieves details for a single product by ID, lookup_catalog fetches multiple products by IDs for pricing/availability, and search_catalog performs free-text and filter-based searches. No ambiguity.
All tool names follow a consistent verb_noun pattern (get_product, lookup_catalog, search_catalog) using snake_case, making them predictable and easy to understand.
Three tools is minimal but appropriate for a demo store's catalog-focused scope. Each tool serves a distinct need without being overly sparse.
The tool set covers core catalog operations: single product lookup, batch retrieval, and search with filters. Minor gaps exist (e.g., no category listing), but the set is sufficient for product discovery and detail retrieval.
Available Tools
3 toolsget_productAInspect
Récupère les détails complets d'UN produit à partir de son identifiant (obtenu via search_catalog ou lookup_catalog). À utiliser lorsque le client souhaite les détails, les déclinaisons ou la disponibilité d'un produit précis. Renvoie une erreur "not_found" claire si l'identifiant ne correspond à aucun produit public. Lecture seule.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Identifiant de produit ou de déclinaison. | |
| context | No | Localisation facultative : langue (BCP 47), devise (ISO 4217), address_country (ISO 3166-1 alpha-2). |
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 of behavioral disclosure. It clearly states read-only nature ('Lecture seule'), error behavior ('not_found' error), and the scope of output (details, variants, availability), which is strong context beyond the schema.
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 three sentences, each earning its place: purpose, usage, and error/behavior. It is front-loaded with the action and contains 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?
Given the tool's moderate complexity (one required parameter plus optional context object) and absence of an output schema, the description adequately covers purpose, usage, error handling, and read-only status. It would benefit from a hint about the exact return structure, but the mention of 'details, variants, availability' mitigates this.
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 adds value by explaining that the 'id' parameter comes from search_catalog or lookup_catalog, providing provenance and usage context that the schema alone does not convey.
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 complete details of one product by ID, using a specific verb and resource. It distinguishes from siblings by referencing search_catalog and lookup_catalog as the source for the ID, making it clear this is for fetching a specific product's details.
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 explicitly states when to use the tool ('when the client wants details, variants, or availability of a specific product') and implies that the ID comes from sibling tools. However, it does not explicitly mention when not to use it, so it misses the full 'when-not' guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_catalogAInspect
Récupère plusieurs produits par identifiants en un seul appel (lot). À utiliser lorsque vous disposez DÉJÀ des identifiants de produits/déclinaisons et souhaitez leur prix/disponibilité actuels. 100 identifiants maximum. Lecture seule.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | ||
| context | No | Localisation facultative : langue (BCP 47), devise (ISO 4217), address_country (ISO 3166-1 alpha-2). |
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 'Lecture seule' (read-only) and a 100-ID maximum, which are valuable behavioral constraints. However, it does not mention error handling for invalid/unknown IDs, behavior when exceeding the limit, or the exact response structure, leaving some 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 four short sentences, each with a distinct purpose: main action, usage context, batch limit, and read-only nature. It is front-loaded with the verb and resource, contains no filler, and is easy to scan.
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 batch lookup tool, it covers purpose, usage, limit, read-only status, and hints at return content (price/availability). Since there is no output schema, a bit more detail on the response shape would help, but the description is still reasonably complete for this moderate complexity 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 coverage is 50%: the context parameter has detailed descriptions, but ids lacks formatting details. The description adds meaning by clarifying IDs refer to products/variants and by imposing the 100-identifier limit. Still, it does not fully compensate for the missing ids format or context default behavior.
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: 'Récupère plusieurs produits par identifiants en un seul appel (lot)' clearly indicating batch retrieval. It also explicitly distinguishes itself from siblings by focusing on existing product/variant IDs and returning current price/availability, contrasting with a search-oriented tool.
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 guidance: use when you already have IDs and need current price/availability. It implies this is for batch lookup rather than search, but it does not explicitly name alternatives or state when not to use it (e.g., for single ID retrieval), so a stronger contrast would improve it slightly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_catalogAInspect
Recherche des produits dans le catalogue PUBLIC du marchand par texte libre et filtres facultatifs (catégories, prix). À utiliser lorsque vous n'avez PAS d'identifiant de produit — p. ex. « chaussures de running bleues à moins de 100 € ». Renvoie des produits avec prix (TTC), déclinaisons et disponibilité. Paginé (curseur). Lecture seule.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Texte de recherche libre. | |
| context | No | Localisation facultative : langue (BCP 47), devise (ISO 4217), address_country (ISO 3166-1 alpha-2). | |
| filters | No | p. ex. {"categories":["3"],"price":{"max":10000}} (prix en unités mineures). | |
| pagination | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Aucune annotation n'est fournie, la description assume donc pleinement la charge de transparence. Elle précise que l'outil est en lecture seule (« Lecture seule »), détaille les retours (prix TTC, déclinaisons, disponibilité) et signale la pagination par curseur, ce qui est utile. Il manque des détails comme les limites de taux ou les exigences d'authentification, mais l'essentiel est couvert.
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?
La description est concise en deux phrases, avec l'information la plus importante (but et cas d'usage) en tête. Chaque phrase apporte une valeur : le but, le moment d'utilisation, les retours et la pagination. Aucune redondance ni longueur excessive.
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?
Malgré l'absence de schéma de sortie, la description décrit suffisamment les retours (produits avec prix, déclinaisons, disponibilité) et le comportement de pagination. Elle couvre le but, le contexte d'utilisation, les paramètres facultatifs et la nature en lecture seule, ce qui rend l'outil compréhensible pour un agent dans la plupart des cas.
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?
La couverture du schéma est élevée (75 %), donc la baseline est de 3. La description ajoute peu d'information supplémentaire sur les paramètres au-delà du schéma : elle mentionne le texte libre, les filtres par catégories/prix et la pagination, mais le schéma fournit déjà ces détails avec des exemples. Aucune explication supplémentaire n'est donnée pour le paramètre 'context'.
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?
La description utilise un verbe spécifique (« Recherche ») et une ressource claire (« produits dans le catalogue PUBLIC du marchand »), ce qui distingue bien l'outil des outils frères comme get_product (qui nécessite un identifiant) et lookup_catalog. La mention explicite « par texte libre et filtres facultatifs » précise la fonction exacte.
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?
La description donne explicitement le cas d'usage : « À utiliser lorsque vous n'avez PAS d'identifiant de produit », avec un exemple concret. Elle indique aussi quand ne pas l'utiliser (absence d'ID), mais ne nomme pas directement les alternatives comme get_product, ce qui empêche la note maximale.
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
- AlicenseAqualityAmaintenanceGTM signal intelligence suite for AI agents. Six tools: hiring signals, tech stack detection, company-to-LinkedIn resolution, ICP scoring, job board scanning, and a combined signals aggregator. Built for outbound sales workflows.111111MIT

industrylens-mcpofficial
Flicense-qualityCmaintenanceBrowse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
Sociality MCPofficial
Alicense-qualityDmaintenanceSocial media analytics, post insights, and competitor benchmarking for AI agents.6MIT- AlicenseAqualityAmaintenanceDetects hiring intent signals by scanning job boards for specific companies. Returns structured role data for outbound sales targeting.1901MIT