Skip to main content
Glama

add_design_node

Add a concept, technology, design pattern, requirement, or risk as a node in a bidirectional design tree, with an optional note.

Instructions

在设计树/双向关系图里添加一个节点。

kind 建议:

  • concept:概念

  • tech:具体技术

  • design:设计模式

  • requirement:需求

  • risk:风险

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoconcept
nameYes
noteNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It does not state whether this mutates persisted state, whether duplicate node names are allowed, what identifiers are returned, or how the new node relates to the existing tree — all critical for a write operation with zero annotation coverage.

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 purpose sentence is front-loaded and the kind list is compact and scannable. It is appropriately sized for the information conveyed, with no obvious filler.

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

Completeness2/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 annotations, no output schema, and 0% parameter description coverage, the description should disclose the node lifecycle, persistence, and return behavior. It supplies only the kind vocabulary, leaving most operational questions unanswered.

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 description coverage is 0% and the kind parameter has no enum, so the description's enumerated kind values (concept/tech/design/requirement/risk) genuinely add meaning beyond the schema. However, it leaves 'name' and 'note' semantics (and whether note is free text or markup) entirely undocumented.

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?

States a specific verb+resource ('add a node') scoped to the design tree / bidirectional graph, which lets an agent distinguish it from the sibling add_design_relation. However, it does not explicitly name or contrast itself with any sibling, so it stops short of full differentiation.

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

Usage Guidelines2/5

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

There is no explicit when-to-use or when-not-to-use guidance; the agent must infer from the tool name and the presence of siblings like add_design_relation and get_design_tree. The kind list hints at intended usage but does not state conditions or alternatives.

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