Skip to main content
Glama
FarazHayder

n8n-mcp-guard

by FarazHayder

n8n_list_test_clones

List leftover temporary test clones created by this server to confirm no test instances are still running. Read-only, with no inputs required.

Instructions

List leftover temporary test clones created by this server, so nothing is left running. Read-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.2.1

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries full behavioral burden. It does disclose the key trait by stating "Read-only" and clarifies that the clones are temporary artifacts created by this server, but it omits pagination, result ordering, or what an empty result means.

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?

Two short sentences, front-loaded with the core action and purpose, with the read-only guarantee tacked on efficiently. Nothing is wasted.

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?

For a zero-parameter, read-only list tool with no output schema, the description covers what is listed and why. The absence of any return-shape detail is acceptable since no output schema exists, though a hint about empty results would round it out.

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 of 4 applies; there is nothing for the description to add and no schema gap to compensate for.

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 pairs a specific verb (List) with a well-scoped resource (leftover temporary test clones created by this server), which no sibling tool touches. It is clear what the tool returns, though it never explicitly contrasts itself with the workflow-oriented siblings (n8n_get_workflow, n8n_backup_workflow, etc.).

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

Usage Guidelines3/5

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

"so nothing is left running" implies a cleanup/verification context, which is a reasonable usage hint. However, there is no explicit statement of when to call this versus other listing or cleanup tools, and no prerequisites are given.

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