Skip to main content
Glama

list_knowledge_base_topics

Discover available knowledge base topics to find the right UE5 system guide before implementation. Returns an index of all queryable topics for targeted assistance.

Instructions

List all available knowledge base topics.

Returns an index of every topic you can query with get_knowledge_base(). Call this first if you are unsure which topic covers the system you need.

MANDATORY: Query the knowledge base before implementing any UE5 system.

KB: see knowledge_base/00_AGENT_KNOWLEDGE_BASE.md#overview Example: list_knowledge_base_topics()

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It is transparent about being a read-only listing operation by explaining it 'Returns an index of every topic' and referencing the companion get_knowledge_base() call. It does not explicitly state that it modifies nothing, but the list/return framing makes the non-destructive behavior clear.

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 compact and front-loaded with the primary purpose. Every section adds value: the return behavior, the usage guidance, the mandatory rule, the KB reference, and the example call. There is no filler or repeated schema information.

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?

For a no-parameter listing tool, the description is complete. It explains what the tool returns, when to use it, why it matters, and where to find additional KB context. Since an output schema exists, the return format does not need to be restated in prose.

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

Parameters4/5

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

The tool has zero parameters, so the schema already fully describes the call signature. The description reinforces this with an example call using no arguments, which is sufficient context for an agent to invoke the tool correctly.

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 action ('List all available knowledge base topics') and the resource ('knowledge base topics'). It also clarifies that it returns an index of every topic queryable via get_knowledge_base(), which distinguishes it from the related sibling tool without needing to inspect schemas.

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 gives explicit guidance: call this first when unsure which topic covers the system you need. It also adds a MANDATORY rule to query the knowledge base before implementing any UE5 system, giving the agent a clear decision rule for when this tool is relevant.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools