Skip to main content
Glama
angrysky56

Cognitive Diagram Navigation MCP Server

by angrysky56

diagram_list_saved

List all diagram IDs saved on disk to discover and reuse persisted diagrams in your reasoning workflow.

Instructions

List all diagram IDs currently persisted on disk.

Returns: dict with list of saved diagram IDs

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden, and it does disclose two useful facts: the operation only returns IDs (not full diagrams) and the IDs come from on-disk persistence. However, it says nothing about permissions, whether the read is side-effect free, or how the listing behaves with unsaved in-memory diagrams.

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?

Two short sentences, front-loaded with the action and scope. The Returns block partly duplicates the output schema, which is mildly redundant but not wasteful enough to hurt readability.

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 zero-parameter listing tool with an output schema present, the description covers purpose, scope (IDs only, on disk), and return shape. Nothing an agent needs to call it correctly is missing.

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?

The tool takes zero parameters, so the baseline is 4; there is nothing for the description to disambiguate. The empty schema is fully consistent with the description's claim of a parameterless listing.

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 specific verb (List) and resource (diagram IDs persisted on disk), making the tool's purpose immediately clear. It is distinguishable from siblings like diagram_load (full content) and diagram_save in practice, though it never explicitly names or contrasts with them, so differentiation is only implicit.

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 guidance on when to use this tool versus diagram_load, diagram_extract, or check_diagram_equivalence. The intended usage (enumerating what is available before loading) can be inferred but is never stated, and no exclusions or prerequisites are provided.

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