Noticiel
Server Details
Notices et modes d'emploi de noticiel.com. Recherche par mots-clés, marque, catégorie ou PDF.
- 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 3.4/5 across 5 of 5 tools scored. Lowest: 2.7/5.
Each tool has a clearly distinct purpose: find_pdf obtains a download link, get_notice retrieves full notice content, list_categories lists product types, list_marques lists brands, and search_notices performs keyword-based search. No two tools overlap in functionality.
All tools consistently use snake_case with a verb_noun pattern (e.g., find_pdf, list_categories, search_notices). The naming is predictable and uniform across the set.
With 5 tools, the server is well-scoped for its domain of accessing product manuals. Each tool covers an essential operation, and the count is within the ideal range for a focused service.
The tool set covers the full discovery-to-retrieval workflow: listing categories and brands, searching for notices, retrieving full notice content, and downloading PDFs. No obvious gaps exist for a read-only manual lookup service.
Available Tools
5 toolsfind_pdfBInspect
Trouve le lien de téléchargement du PDF d'une notice sur Noticiel pour une marque et un modèle donnés. Source : Noticiel.
| Name | Required | Description | Default |
|---|---|---|---|
| marque | Yes | ||
| modele | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears full responsibility for behavioral disclosure. It only indicates the output is a download link but omits details on error handling (e.g., if PDF not found), authentication requirements, or any side effects. The behavior is stated but not elaborated.
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 extremely concise (two sentences) and front-loaded with the core purpose. Every word adds value; there is no redundancy or irrelevant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with two required parameters, the description is adequate but incomplete: it does not describe the return format or structure of the download link. Given no output schema, the agent lacks information on what the response looks like, which is necessary for downstream usage.
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 0%, yet the description adds only the names 'marque' and 'modèle' without any additional meaning, examples, format constraints, or required status. The parameter names are self-explanatory but the description fails to compensate for the schema's lack of detail.
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 specifies the action ('trouve le lien de téléchargement'), the resource ('PDF d'une notice'), the platform ('Noticiel'), and the required inputs ('marque' and 'modèle'). It distinguishes itself from sibling tools like get_notice or search_notices by focusing on downloading a PDF.
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 no guidance on when to use this tool versus alternatives, no prerequisites, and no conditions for use. It merely states what the tool does without contextualizing its role among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_noticeAInspect
Récupère le contenu complet d'une notice Noticiel (texte + lien PDF) à partir de son URL ou de son slug. Source : Noticiel.
| Name | Required | Description | Default |
|---|---|---|---|
| url_ou_slug | Yes | URL Noticiel ou slug de la fiche |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It only states what the tool returns (text + PDF link) but omits details like error handling (e.g., invalid slug), authentication requirements, rate limits, or whether the notice must exist. This lack of transparency could mislead an agent about edge cases.
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 with no filler. It front-loads the purpose and includes the source. Every word is functional and earns its place.
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 tool with one parameter and no output schema, the description is largely complete. It explains the input (URL or slug) and output (text + PDF link). However, it could be more complete by specifying the return format (e.g., JSON structure) or potential error responses, but given the simplicity, it suffices.
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 a clear description of the only parameter. The description adds no additional meaning beyond the schema (e.g., no format constraints or examples). Baseline 3 is appropriate since the schema already sufficiently documents the parameter.
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 action (retrieves full content), the resource (a Noticiel notice), and the inputs (URL or slug). It distinguishes from siblings like search_notices (search) and find_pdf (PDF-specific) by specifying 'full content including text and PDF link'.
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 you need the full content of a specific notice by URL/slug. No explicit when-not-to-use or alternatives are mentioned, but the sibling tools provide context (e.g., use search_notices for discovery, find_pdf for PDF-only). The guidance is adequate but not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_categoriesCInspect
Liste les catégories de produits (types d'appareils) couvertes par Noticiel, triées par volume.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavior. It mentions sorting by volume, but omits other behavioral traits like read-only nature, pagination behavior (despite a limit parameter), handling of empty results, or data freshness. Minimal value 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 a single short sentence, which is concise but lacks structure. It could better integrate parameter information or context. However, there is no extraneous 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?
For a tool with no output schema, no annotations, and one undocumented parameter, the description is incomplete. It covers purpose but fails to explain the limit parameter, return format, or edge cases. Inadequate for effective agent usage.
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 0%, meaning the 'limit' parameter has no description in the schema. The description does not mention the parameter at all, failing to compensate for the lack of schema documentation. No semantics added.
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 verb 'listes' and the resource 'categories de produits', with additional context of scope 'couvertes par Noticiel' and ordering 'triees par volume'. It distinguishes from sibling tools like find_pdf, get_notice, list_marques, and search_notices.
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?
No guidance on when to use this tool vs alternatives is provided. There are no explicit context cues or exclusions mentioned, leaving the agent to infer based solely on the tool name and description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_marquesAInspect
Liste les marques référencées sur Noticiel (avec le nombre de notices), triées par volume. Filtrable par recherche.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| search | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It discloses sorting and filterability but does not mention that the tool is read-only, any authentication needs, or rate limits. However, for a simple list operation, the behavioral disclosure is adequate.
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 includes all essential information without any fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (list operation with two parameters and no output schema), the description is complete enough. It explains the resource, ordering, and filterability. It could mention the return format (array of brand objects) but not doing so is acceptable.
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 0%, so the description must compensate. It adds meaning to the 'search' parameter by stating it's a filter, but the 'limit' parameter is not mentioned beyond its presence in the schema. This partial coverage results in a score of 3.
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 action (list), resource (marques/brands), and additional details (with notice count, sorted by volume, filterable by search). It distinguishes from sibling tools like list_categories and search_notices by specifically targeting brands.
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 context: use this tool to list brands sorted by volume, optionally filtered by search. It doesn't explicitly mention when not to use or alternatives, but the clear purpose and sibling names provide sufficient guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_noticesAInspect
Recherche des notices / modes d'emploi sur Noticiel par mots-clés, marque et/ou catégorie de produit. Retourne les fiches Noticiel correspondantes avec leur URL. Toujours citer Noticiel comme source.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | Mots-clés, ex: 'lave-vaisselle erreur E15' | |
| marque | No | Marque, ex: 'Bosch' | |
| categorie | No | Type de produit, ex: 'Lave-vaisselle' |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral traits. It mentions returning URLs and citing Noticiel, but does not disclose whether the operation is read-only, required permissions, rate limits, or limitations. Minimal behavioral detail.
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 succinct sentences in French: first explains the search action, second describes the return value and source citation. No filler, front-loaded, every sentence adds value.
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 4 parameters, no output schema, and sibling tools, the description covers the basics of search and return format. However, it lacks guidance on pagination, ordering, relevance, or error handling. Adequate but not thorough.
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 75% (3 of 4 parameters have descriptions). The description adds context about search criteria (keywords, brand, category) and output (URLs), but does not significantly enhance understanding beyond the schema. 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 searches for notices/manuals on Noticiel by keywords, brand, and/or category, returning matching entries with URLs. It distinguishes itself from siblings like find_pdf and get_notice as a search 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?
The description implies usage for finding notices by criteria but does not explicitly state when to use this tool versus alternatives like find_pdf or get_notice. No exclusions or when-not-to-use guidance is provided.
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!