Skip to main content
Glama

Analytics Legends — SAP Analytics Intelligence

Traverse the learning knowledge graph

query_knowledge_graph
Read-onlyIdempotent

The RELATIONS between the platform's teaching objects — which Academy module teaches which concept, which study covers which module, what a concept relates to. THIS IS THE ONLY TOOL ON THIS SERVER THAT SERVES EDGES; the others serve rows. Ask it what connects to what, not what exists. SCOPE, AND IT IS NARROWER THAN 'the knowledge graph': it carries four node types — concept, module, study, vendor — and every edge whose BOTH endpoints are one of them. The whole graph holds eleven node types; the seven it does not carry are each either served by their own tool or named as not served at all, and _meta.excluded_node_types says which per type (consultant data is served at NO tier), so a missing type is a documented boundary and never a silent gap. Call it with node_id (e.g. module:M178, concept:C001, study:ai-impact-2026-EN) to walk one node's neighbourhood; with node_type and/or query to find a node id first. edge_type and direction narrow a walk. Read _meta.available_edge_types — computed from the served projection on every call — before assuming an edge type exists.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax rows (hard cap 50).
queryNoCase-insensitive substring of a node's label. Applies to the NODE listing, not to a walk.
cursorNoOpaque token from a previous response's `_meta.next_cursor`. Pass it back with the SAME filter arguments; `null` means the last page. Changing a filter refuses the cursor.
node_idNoFully-qualified node id, `<type>:<id>` — `module:M178`, `concept:C001`, `study:ai-impact-2026-EN`, `vendor:alteryx`. With it, rows are that node's EDGES (one row per neighbour). Without it, rows are NODES.
directionNoWhich side of the edge `node_id` must sit on. Default `both`. Ignored without `node_id`, and the response says so rather than pretending it applied.
edge_typeNoRestrict a walk to one relation. The served projection carries FIVE — teaches · taught_by · covers · related · mentions — and this list is a HINT, not the authority: read `_meta.available_edge_types`, computed on every call. A four-name list stood here while the projection served five, so `mentions` was reachable and undocumented.
node_typeNoRestrict to one carried node type: concept · module · study · vendor. Read `_meta.available_node_types`.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
rowsYes
toolYes
_metaNo
_attributionYes
result_countYes

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already cover safety (readOnlyHint, idempotentHint, destructiveHint=false), and the description adds substantial non-obvious behavior on top: the served projection is dynamic ('Read `_meta.available_edge_types` — computed from the served projection on every call — before assuming an edge type exists'), the edge-type list is a 'HINT, not the authority,' a missing node type is 'a documented boundary and never a silent gap,' and `direction` is ignored without `node_id` and 'the response says so rather than pretending it applied.' The historical note about the stale four-name list concretely justifies why the agent must trust the meta-field over the static docs. No contradiction with annotations.

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?

The description is long, but it is front-loaded with purpose and every sentence carries a distinct piece of information — purpose, exclusivity, scope, boundary behavior, invocation modes, narrowing parameters, and the meta-field warning. The only mild excess is the historical anecdote about the four-name list, but it earns its place by justifying the 'hint, not authority' instruction. For a tool with 7 parameters, two invocation modes, and a complex server context, the density is appropriate rather than padded.

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 tool of this complexity — dual node/edge modes, cursor pagination, dynamic meta-fields, and a server where it is the sole edge-serving tool — nothing an agent needs to call it correctly is missing. The tricky parts are all addressed: the boundary of the served projection, how to confirm available edge/node types, the node_id format, and the mode-switching parameter interplay. An output schema exists, so return-value details need not be in the description.

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?

Schema coverage is 100%, so the schema already documents every parameter in detail — baseline is 3. The description adds genuine value above that: concrete node_id formats (`module:M178`, `concept:C001`, `study:ai-impact-2026-EN`, `vendor:alteryx`), the mode-switching semantics of `node_id` (edges vs nodes), and the find-id-first workflow linking `node_type`/`query` to `node_id`. It stops short of restating what the rich schema descriptions already say, which is exactly the right division of labor.

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 names a specific verb and resource — query the relations/edges of the learning knowledge graph — and immediately distinguishes it from everything else on the server: 'THIS IS THE ONLY TOOL ON THIS SERVER THAT SERVES EDGES; the others serve rows.' It further refines the scope to four carried node types, so an agent knows exactly what this tool is and is not. This is exemplary sibling differentiation without opening any schema.

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?

It gives an explicit when-to-use rule ('Ask it what connects to what, not what exists'), names the contrast with the row-serving tools, and explains when NOT to use it: the seven unserved node types are 'each either served by their own tool or named as not served at all,' with `_meta.excluded_node_types` as the authority. It also lays out the two invocation modes — `node_id` to walk a neighbourhood, `node_type`/`query` to find a node id first — which is concrete, actionable 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
Disambiguation4/5

Each tool targets a distinct resource or action (firms, clients, modules, concepts, studies, opportunities, rates, news, knowledge graph). Some pairs like find_academy_modules vs list_sap_modules and find_sap_clients vs search_firms could be confused, but the descriptions explicitly disambiguate them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase snake_case: find_, get_, list_, search_, count_, query_. Verbs are consistently used for their roles (find/search for querying, get for single items, list for enumerations), with no mixed casing or style.

Tool Count4/5

20 tools is on the higher end, but the server covers a broad domain with multiple distinct datasets (directory, clients, academy, concepts, studies, opportunities, rates, news, graph). Each tool earns its place, though the count is slightly above the ideal 3-15 range.

Completeness5/5

The domain is a read-only intelligence platform, and it provides search/list and get operations for every major entity: firms, clients, modules, concepts, studies, and opportunities. The knowledge graph adds relational querying, and rates/news are covered. No essential lifecycle operations are missing for the stated purpose.