Skip to main content
Glama

Search Hispanic Legacy

search
Read-onlyIdempotent

Full-text search over the knowledge graph. Matching ignores accents and apostrophes, so query in the user's own words; every hit carries the fields it matched and a score. Text match, weighted by where the token hits (name 3, tags 2, content 1 per query token), plus a centrality bonus of up to 0.9 for objects that other objects point at. That bonus is why two hits can share matched_fields and still score differently: the decimal is inbound edges, not text relevance. Use this whenever you have a question rather than an id, then follow up with get_entity.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHow many ranked hits to return, best first.
queryYesWhat to look for, in the user's own words. Matched against titles, questions, claim text and tags; accents and apostrophes are ignored, so 'jose' finds 'José'.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalYes
resultsYes

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the readOnly/idempotent/destructive annotations, the description reveals how matching normalizes accents and apostrophes, the exact token weights per field, and the centrality bonus mechanics. It even warns that the decimal represents inbound edges, not text relevance, which prevents misinterpretation of scores.

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 front-loaded with the core purpose, then efficiently layers normalization, scoring, and usage guidance. Every sentence contributes distinct information, and the whole thing remains compact enough for quick reading.

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 and annotations covering safety, the description fully covers what the agent needs: when to use it, how matching works, how scores are computed, and what the follow-up should be. Nothing essential is missing for a search tool of this complexity.

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 the schema already documents query and limit. The description mostly repeats the normalization behavior from the query parameter and adds scoring context, but it does not introduce new parameter meaning beyond what the schema provides. Baseline 3 is appropriate.

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 opens with a precise verb and resource: 'Full-text search over the knowledge graph.' It also distinguishes itself from siblings by stating this is for questions rather than IDs and explicitly names get_entity as the follow-up tool, so an agent can select it correctly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

'Use this whenever you have a question rather than an id, then follow up with get_entity' provides a clear decision rule and names an alternative. This is explicit enough for an agent to know when search is appropriate versus when an entity lookup is needed.

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

Each tool has a clearly distinct role: answer/search are query entry points, get_entity/get_related handle graph traversal, get_overview/get_topic/get_latest cover different browsing modes, and get_sources handles provenance. The descriptions actively call out when to choose one tool over another, so misselection is unlikely.

Naming Consistency4/5

The six retrieval tools consistently use the get_ prefix (get_entity, get_topic, get_sources), making the direct-fetch pattern predictable. answer and search break the prefix pattern, but they are intentional query verbs and still fit a readable action-based convention.

Tool Count5/5

Eight tools is a well-scoped size for a knowledge-graph retrieval server. Each tool covers a distinct access path (overview, search, answer, entity, relations, sources, topics, freshness) without redundancy or bloat.

Completeness5/5

The tool surface covers the full read lifecycle for a corpus: orienting via overview/sources, finding content via search/topic/latest, drilling into entities, expanding via relations, and getting provenance for every claim. No obvious dead ends or missing operations for a read-only knowledge server.