Skip to main content
Glama

Add node

add

Create a node in the Grove reasoning graph by specifying its kind and title; returns the assigned id (e.g., W-12). Additional fields apply per kind.

Instructions

Create one node of the given kind and return its assigned id (for example W-12); nothing else is printed. Only kind and title are always required; other fields apply per kind (goals and theme for w, surface or why for y, fitness for g, supersedes for d, targets for q and b) and invalid combinations are rejected on write. To modify an existing node use set or field; to connect nodes use link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
whyNoanchor rationale (y; xor surface)
areaNoowning area A-NN (required for kind g)
fromNocomma-separated provenance ids (y)
kindYesnode kind
tagsNocomma-separated glossary terms (y)
typeNowork item type (w)
goalsNocomma-separated goal ids (w)
testsNocomma-separated question ids (b)
themeNotheme id T-NN (w)
titleYesshort node title, stamped verbatim
statusNoinitial status override
cynefinNocynefin class (w, q, b)
fitnessNoretired legacy fitness label (g; writes are rejected, use fitness_kind + fitness_target)
surfaceNocomma-separated paths (w, y, a)
targetsNocomma-separated target ids (q, b)
supersedesNocomma-separated superseded decision ids (d)
fitness_kindNostructured fitness kind (g; some fitness value is required for kind g)
fitness_targetNostructured fitness target (g)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.2.1
    • changedInput schema / properties / title / description
      Previous value: -"node title"New value: +"short node title, stamped verbatim"
  2. First observedv0.2.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations are all false, so they carry little behavioral signal, and the description takes on the burden. It discloses that the tool writes a new node, returns only the assigned id, prints nothing else, and rejects invalid combinations on write. It omits details like side effects or rollback behavior, but for a create tool this is strong transparency.

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?

Three sentences, each earning its place: output behavior, required fields plus per-kind applicability, and routing to sibling tools. The essential information is front-loaded, and there is no fluff or repetition of schema content.

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?

Given 18 parameters, no output schema, and uninformative annotations, the description supplies the crucial context: what is returned, what is required, which fields are relevant per kind, and when to use alternatives. It loses one point because the 'fitness for g' statement conflicts with the schema's rejected-field behavior, which could lead an agent to construct an invalid call.

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 description need not restate every parameter, and it does add a compact per-kind summarization of which fields apply. However, the summary says 'fitness for g', while the schema explicitly says the fitness parameter is a retired legacy label whose writes are rejected for g, recommending fitness_kind + fitness_target instead. This active inconsistency undermines the guidance and prevents a score above baseline.

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 and resource: 'Create one node of the given kind and return its assigned id'. It even gives an example id format, W-12, so the tool's core function is unmistakable. It also differentiates the tool from siblings by pointing to set, field, and link for other operations. This is a model of purpose clarity.

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 explicitly says 'To modify an existing node use set or field; to connect nodes use link', giving clear routing to alternatives. It also warns that invalid kind/field combinations are rejected on write, which tells agents to validate their parameter choices before calling. There is no ambiguity about when to use this tool.

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