Skip to main content
Glama
angrysky56

Cognitive Diagram Navigation MCP Server

by angrysky56

diagram_delete

Delete a diagram by ID from active memory and persisted storage, removing it completely from the reasoning space.

Instructions

Delete a diagram from both active memory and persisted storage.

Args: diagram_id: ID of diagram to delete

Returns: dict containing success status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
diagram_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It usefully discloses that deletion affects both active memory and persisted storage and mentions a success return, but does not state irreversibility, required permissions, error behavior, or side effects.

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?

Front-loads the purpose, then cleanly separates Args and Returns. No unnecessary text; every sentence is short and informative for the operation described.

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

Completeness3/5

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

For a simple one-parameter delete tool, the description covers purpose, parameter, and return. However, with no annotations and no output schema details needed, it should still warn about irreversibility or prerequisites. Missing usage guidance leaves an important gap for a destructive operation.

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%, so the description should add meaning. It restates the single parameter as 'ID of diagram to delete' without format, constraints, or validation details. Minimal but adequate given the parameter is self-explanatory.

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 ('Delete') and resource ('diagram') with additional scope ('from both active memory and persisted storage'). This clearly distinguishes it from create/load/save/list siblings, though it does not explicitly name alternatives.

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?

Provides no when-to-use guidance, prerequisites, or alternatives. The deletion action is implied by the verb, but the description offers no explicit context for selecting this tool over related diagram operations.

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