Skip to main content
Glama

Search existing explainers

search_explainers
Read-onlyIdempotent

Searches explainers by English/Arabic title, slug, summary, or content. Administrators see draft and published explainers with both languages, and should call this before creating a new explainer to avoid duplicates. Other accounts see published explainers only, in a single locale (pass the caller's language in locale), each with a canonical URL to the full explainer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
localeNoThe calling user's language. Ignored for administrator tokens, which always receive both languages.en

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultsYes
successYes

TDQS

A4.5/5.0
Behavior4/5

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

The description adds valuable behavioral context beyond the annotations: it explains the visibility difference between administrator and non-administrator tokens, the locale parameter's behavior, and that results include a canonical URL. This is useful supplementary detail to the readOnly and idempotent hints provided by 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 three sentences long, front-loaded with the core purpose, and each sentence adds meaningful information. It is tight and free of redundancy, making it easy for an agent to parse quickly.

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

Completeness5/5

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

Given the output schema exists and annotations are present, the description covers all necessary aspects: search scope, role-based behavior, locale handling, canonical URL, and a usage recommendation for duplicate avoidance. It is fully sufficient for the tool's complexity.

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?

The description clarifies the 'query' parameter by listing the searchable fields (title, slug, summary, content), which is not in the schema. It also explains the 'locale' parameter's role and administrator override. Only 'limit' lacks description, but its schema constraints and default are sufficient. With schema description coverage at 33%, the description effectively compensates.

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 uses a specific verb ('searches') and clearly identifies the resource ('explainers') and the exact searchable fields (English/Arabic title, slug, summary, content). This distinguishes it from sibling tools like search_terminology and get_news_by_id.

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?

Explicitly states when to use this tool ('should call this before creating a new explainer to avoid duplicates') and explains role-based behavior (administrators vs other accounts) and locale handling. It does not explicitly name alternative tools, but the context is clear enough to guide selection.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: news by ID, recent news, timeline by ID, explainer search, terminology search, and server status. There is no overlap in their purposes, and the descriptions make the boundaries clear.

Naming Consistency4/5

Five of six tools follow a clear verb_noun pattern (get_*, search_*), with consistent snake_case formatting. The only deviation is 'server_status', which uses noun_noun style, but this is minor and the name is still intuitive.

Tool Count5/5

With six tools, the set is well-scoped for a content retrieval/search server covering news, timelines, explainers, terminology, and health status. Each tool serves a distinct purpose, and the count feels neither sparse nor bloated.

Completeness3/5

The core retrieval operations exist for news and timelines, but there are notable gaps: no get-by-id for explainers or terminology, no search for news or timelines, and no write operations (create/update/delete) despite admin hints in descriptions. These gaps force agents to rely on search results and limit full lifecycle coverage.

Resources