Skip to main content
Glama

Search Football Atlas

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?

Goes far beyond the readOnly/idempotent annotations by detailing accent/apostrophe normalization, per-hit matched_fields and score, the token-weight formula (name 3, tags 2, content 1), and the centrality bonus up to 0.9. It even explains why scores can differ despite identical matched_fields, which prevents misinterpretation.

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 dense but each sentence adds critical information: scope, normalization, result shape, scoring weights, the meaning of the centrality decimal, and usage routing. It front-loads the core search action and keeps the explanation structured from behavior to interpretation.

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?

Covers the tool's full behavioral contract: what it searches, how matching and scoring work, how to interpret ambiguous scores, and when to call it relative to get_entity. Output schema covers return values, and annotations cover safety/idempotency, so nothing necessary is missing.

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 coverage is 100%, so the baseline is 3. The description reinforces the schema's 'user's own words' guidance and adds context about how query tokens are weighted, but it doesn't add new parameter-level information beyond what the input schema already provides.

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?

States 'Full-text search over the knowledge graph' with the specific verb 'search' and the resource 'knowledge graph'. The description also distinguishes it from sibling get_entity by framing search as the entry point for questions rather than IDs.

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?

Explicitly says 'Use this whenever you have a question rather than an id, then follow up with get_entity', giving both a positive trigger and an exclusion (when you have an id). It names get_entity as the follow-up alternative, providing clear 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.5/5.0
Disambiguation5/5

Every tool targets a distinct retrieval mode: answer for direct questions, search for candidate discovery, get_entity for a single object, get_related for graph neighbours, get_topic for tag browsing, get_latest for freshness, get_sources for citations, and get_overview for corpus-level context. The descriptions also explicitly contrast each tool with the alternatives that might be confused with it.

Naming Consistency4/5

The majority of tools follow a clear get_<noun> pattern (get_entity, get_topic, get_sources, get_overview, get_related, get_latest), and all names are lowercase snake_case. The two query actions, answer and search, break the get_ prefix pattern slightly, but they are intentionally different entry-point verbs rather than resource fetches.

Tool Count5/5

Eight tools is well within the ideal range for a knowledge-graph query server. Each tool covers a distinct aspect of corpus exploration without feeling redundant or bloated.

Completeness5/5

The server covers the full read-only workflow for a football knowledge atlas: corpus overview, freshness, full-text search, direct question answering, entity lookup, relation traversal, topic browsing, and source verification. Gaps like create/update/delete are not needed for this domain, and the descriptions deliberately handle misses with near-miss suggestions.