Skip to main content
Glama

search_articles

Recherche des guides de connexion « mon compte / espace client » sur compteparticulier.com par mots-clés (marques et administrations françaises : banques, assurances, mutuelles, énergie, télécom, streaming, services publics, commerce). Retourne une liste (titre, slug, URL, description). Utiliser le slug avec get_article pour obtenir le contenu complet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNombre de résultats (1-20, défaut 10).
queryYesMots-clés de recherche (ex. « se connecter EDF », « mot de passe oublié mutuelle »).

TDQS

A4.2/5.0
Behavior3/5

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 conveys the output shape (title, slug, URL, description) and that it returns a list, but does not disclose whether the operation is read-only, error behaviors (e.g., empty results), rate limits, or pagination beyond the schema's limit parameter. For a search tool, read-only is implied but not stated; the description leaves room for uncertainty 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no redundant words. It front-loads the core action (search by keywords), then states the output format, and concludes with usage guidance for the sibling tool. Every sentence earns its place, and the structure is logically ordered.

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?

The tool is simple (two parameters, no nested objects, no output schema) and the description covers the essential aspects: what it searches, what it returns, and how to retrieve full content. The lack of an output schema is compensated by listing the fields in the description. It does not cover error handling or read-only guarantees, but for a straightforward search tool with clear parameter schemas, the description is adequately complete.

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

Parameters4/5

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

Schema coverage is 100%, so baseline is 3. The description adds value by clarifying the search domain (connection guides for French brands) and explicitly instructing to use the slug with get_article, which helps the agent understand how the query parameter relates to the output. The limit parameter is fully documented in the schema, and the description does not contradict or add much beyond the schema, but the additional context about the search scope goes slightly beyond the schema's parameter descriptions.

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 states a specific verb ('Recherche') and resource ('guides de connexion' on compteparticulier.com), defines the domain (French brands and public services), and specifies the output (list with title, slug, URL, description). It also clearly distinguishes from the sibling tool get_article by instructing to use the slug with get_article for full content, making the purpose unmistakable.

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 description explicitly tells the agent to use get_article with the slug to obtain full content, which indicates when to use each tool. It provides context (search for connection guides) but does not explicitly state when *not* to use this tool (e.g., when full content is needed), though the implication is clear. No exclusions or alternatives beyond the sibling are mentioned, but with only one sibling, this is sufficient.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

The two tools have clearly distinct roles: one searches for articles by keyword, the other retrieves a full article by slug. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tools follow a consistent verb_noun snake_case pattern: search_articles and get_article. The naming clearly indicates action and target resource.

Tool Count3/5

With only two tools, the server is minimal but the pair is sufficient for its narrow purpose of searching and retrieving guides. Still, it sits at the low end of the acceptable range.

Completeness5/5

For a read-only guide retrieval server, search_articles and get_article form a complete workflow: find articles by keyword, then fetch full content. No obvious missing operation within the stated domain.