Skip to main content
Glama

Santismm Knowledge — Harness Engineering, Agentic AI & Governance

Search Harness Engineering & Agentic AI

search
Read-onlyIdempotent

Ranked keyword search across the whole corpus (knowledge, patterns, architectures, governance and the handbook). Matches every language and ignores accents, so query in the user's own words. Each hit carries a relevance score and the fields it matched; follow up with the matching get_* tool for full detail. Use this before any get_* tool whenever you have a question rather than an identifier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 20).
queryYesKeyword or phrase to search for, in any of en/es/pt.
localeNoLanguage of the returned body. Default: en.
domainsNoRestrict to these domains. Omit to search everything, including the handbook.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYes
queryYes
resultsYes

TDQS

A4.2/5.0
Behavior4/5

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

The description adds several meaningful behavioral traits beyond the readOnly/idempotent annotations: it handles language-insensitively ('Matches every language and ignores accents'), returns relevance scores and matched fields, and implies that results are summaries needing get_* for full details. These details directly inform agents how to interpret the response and compose multi-tool workflows. It falls one point short of 5 because it does not address potential latency, sorting/ranking criteria, or behavior when the query matches nothing—though the abundant output schema partially offsets this gap.

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?

Four sentences totaling ~60 words cover purpose, behavioral traits, return value, and usage guidance—all efficiently packed. The most critical information is front-loaded, and no sentence is wasted or repetitive. It achieves high informational density without sacrificing readability.

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?

With a 100%-coverage schema, a full output schema, and safety-specifying annotations, the description needs to cover only the behavioral gaps—and it does. It explains the language-agnostic matching, ranked output, and follow-up pattern. It loses one point for not explicitly noting that some domains can be excluded via the 'domains' parameter (limiting results), though this is a minor omission given that the schema and default behaviors are self-explanatory.

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

Parameters3/5

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

Schema description coverage is 100%, so every parameter already has a description (query, limit, locale, domains). The description adds one useful hint—'query in the user's own words'—which clarifies the expected style of the query parameter beyond what the schema says. However, it never directly addresses the parameters as the 'not relevant' list does, and most of the value here comes from the schema. Baseline 3 is appropriate given the high schema coverage.

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 clear verb ('Ranked keyword search') and resource ('across the whole corpus'), then enumerates the corpus scope by domain. It explicitly differentiates itself from get_* siblings by explaining the tool is for questions rather than known identifiers: 'Use this before any `get_*` tool whenever you have a question rather than an identifier.' This specific, actionable differentiator—backed by sibling names—distinguishes it from every get_* alternative, satisfying the 'specific verb+resource' + 'distinguishes from siblings' criterion.

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 provides an explicit rule for when to use this tool versus the get_* family, telling agents to search first when dealing with a question, then follow up with get_* for full details. It names the alternative explicitly and gives a condition-based guideline that is not present in the annotations or schema. It could earn a 5 by also acknowledging the list_* siblings for exploration use cases, but the conditional rule provided is concrete and immediately actionable.

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

Every tool targets a distinct operation and identifier: search is the entry point, list_* returns browsing summaries, get_* returns a single unit, get_related traverses the graph, and get_overview maps the corpus. Even the similar get_homeric_* trio is cleanly separated by episode/place/route.

Naming Consistency5/5

All names follow snake_case verb_noun: get_* for singular retrieval, list_* for enumeration, plus search. get_related and get_overview are the only deviations but remain predictable read operations.

Tool Count4/5

21 tools is above the typical 3-15 range, but the count is justified by the number of distinct corpora and the consistent list/get pairing for each; there are no redundant tools, so it is only slightly heavy.

Completeness5/5

The server offers a complete read-side lifecycle for this knowledge corpus: overview, search, list, get, and graph traversal. For a read-only knowledge server, there are no obvious dead ends; coverage of claims, patterns, architectures, governance, handbook and Homeric atlas is thorough.