Skip to main content
Glama

get_knowledge_index

Show the structured index profile: per column coverage, type, numeric range, top values, warnings.

**The warnings are the point.** On a real 4,500-document catalogue this surfaced three data
problems nobody knew about: 1,058 documents with `page_count` 0, 505 with `reading_level` 0,
493 with `word_count` 0 — those are not zeros, they are missing values recorded as 0, and they
silently poison every average, minimum and range filter built on them.

Report the warnings to the user in their own terms ("493 of your books have no word count —
they will all tie for shortest"). Nothing else in the platform will ever tell them.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.1/5.0
Behavior5/5

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

With no annotations, the description carries full responsibility. It goes beyond a simple read operation by explaining that zeros are missing values that 'silently poison every average, minimum and range filter,' includes a real-world example, and instructs the agent on how to report findings. This is strong behavioral disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with a clear summary, then a bolded emphasis and a detailed anecdote. The anecdote is compelling but adds length; still, each sentence earns its place by reinforcing the tool's value and usage guidance.

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?

The description covers purpose, behavioral nuances, and reporting expectations. With an output schema present, it doesn't need to describe return values. The main gap is parameter semantics, but overall this is a well-rounded description.

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

Parameters2/5

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

The schema has zero description coverage for the single 'name' parameter, and the description never clarifies that 'name' refers to the knowledge index being inspected. While the parameter is named intuitively, the description provides no additional meaning, leaving the agent to infer what name is expected.

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 specific verb+resource: 'Show the structured index profile' and lists concrete components (coverage, type, numeric range, top values, warnings). This clearly distinguishes it from sibling tools like build_knowledge_index and patch_knowledge_index, which modify rather than read the index.

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 frames the warnings as the tool's central purpose and notes 'Nothing else in the platform will ever tell them,' implying this is the go-to tool for surfacing data-quality issues. However, it does not explicitly name alternatives or state when not to use it, so it's clear but not fully explicit.

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

A3.6/5.0
Disambiguation4/5

Tools are mostly distinct by domain and action. A few pairs like add_knowledge_file vs add_knowledge_text or build_knowledge_index vs patch_knowledge_index could cause confusion, but descriptions clearly differentiate them.

Naming Consistency4/5

The vast majority follow a consistent verb_noun snake_case pattern (create_*, list_*, get_*, update_*). A few outliers like tenant_info, usage_stats, and page_context_stats are noun-first, deviating slightly from the otherwise uniform scheme.

Tool Count1/5

With 50 tools, this is a very large surface that exceeds typical well-scoped server sizes. Even for a broad platform management API, the sheer number makes it heavy and potentially overwhelming, matching the '50+' extreme mismatch category.

Completeness2/5

The server covers creation, reading, updating, and listing for most resources but lacks any delete operations (no delete_agent, delete_knowledge_base, delete_skill, delete_share, delete_storyline, delete_page_context). This is a significant gap in lifecycle coverage that will force agents to work around missing functionality.

Resources