Skip to main content
Glama

save_knowledge_nodes

Save knowledge nodes to persist tutoring state, respecting the unit concept budget for each session.

Instructions

Persist knowledge nodes. Each unit_tag must respect unit_concept_budget.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nodesYes
request_idNo
session_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

C2.1/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden. It discloses a persistence action and adds a cryptic constraint about unit_tag and unit_concept_budget, but does not explain what those mean, what happens on success or failure, or any side effects. The constraint is a partial behavioral disclosure but lacks essential context.

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

Conciseness2/5

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

The description is extremely short, but this is under-specification rather than conciseness. It front-loads the purpose but the single constraint sentence is cryptic and unhelpful. There is no wasted wording, but the description fails to include essential information, so it does not earn a high score for structure.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no output schema and free-form node objects, the description is drastically incomplete. An agent has no idea what a valid node looks like, what unit_tag and unit_concept_budget refer to, or what the tool returns. It lacks all necessary context to invoke it correctly.

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

Parameters1/5

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

Schema description coverage is 0%. The description does not explain the parameters at all. The schema defines nodes as an array of objects with additionalProperties true, so the structure is entirely opaque. The description adds no meaning to session_id, request_id, or the nodes format.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource: 'Persist knowledge nodes'. It distinguishes from read operations like get_knowledge_nodes and from save_knowledge_edges by naming the specific resource. However, it does not explicitly contrast with siblings or elaborate on scope beyond the resource name.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives. It does not mention when to prefer save_knowledge_nodes over save_knowledge_edges, nor any prerequisites or contextual triggers. The description provides no usage context whatsoever.

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