Skip to main content
Glama

Sources behind Hispanic Legacy

get_sources
Read-onlyIdempotent

The instance's whole source registry, or just the sources cited by one object — each with its evidence tier, reliability and access date. Use this when you need the registry entry behind a citation, or the whole registry to judge the corpus before trusting it; get_entity already tells you which sources a claim cites.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
object_idNoRestrict the answer to the sources cited by this knowledge object. Omit it to get the instance's whole source registry.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
foundYes
sourcesYes
recoveryNo

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description does not need to restate safety. It adds useful behavioral context by specifying the two retrieval modes (whole registry vs. object-scoped) and the included fields (evidence tier, reliability, access date). This goes beyond the structured annotations without contradicting them.

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 wasted words. It front-loads the core behavior, then immediately gives usage guidance and a sibling-tool distinction. Every clause earns its place.

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 single optional param, rich annotations, and presence of an output schema, the description covers what the tool does, when to use it, how to toggle scope, and how it relates to get_entity. Nothing essential is missing for an agent to select and invoke it correctly.

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?

The input schema already provides 100% parameter description coverage, including the meaning of object_id and the omit-to-get-whole-registry behavior. The description mirrors this guidance rather than adding new parameter semantics. A baseline of 3 is appropriate because the schema carries the load.

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 clearly states the tool returns the instance's whole source registry or sources cited by one object, each with evidence tier, reliability, and access date. It distinguishes itself from get_entity by explicitly noting that get_entity already tells which sources a claim cites. The verb 'get' plus resource 'sources' makes the scope precise.

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?

The description explicitly tells when to use this tool: when needing the registry entry behind a citation or the whole registry to judge the corpus. It also provides an alternative, get_entity, and implies when not to use get_sources, since get_entity already provides which sources a claim cites. This is strong practical routing guidance.

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.