Skip to main content
Glama
ms-methos

jsonfabrica-mcp-server

Delete a JsonFabrica sequence

jsonfabrica_delete_sequence
DestructiveIdempotent

Permanently delete a named sequence from JsonFabrica. Use when you need to remove sequence history and state irrecoverably, unlike archive.

Instructions

Calls DELETE /v1/sequences/{name}. This is a hard, permanent delete — unlike jsonfabrica_delete_template's soft-delete/archive behavior, the sequence record is removed entirely and cannot be recovered; there is no status: "archived" equivalent for sequences. Returns no content on success. Any template body still calling createSeq()/getSeq() with this name afterwards will no longer see the deleted history/state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesExact name of the sequence to delete. Required.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / properties / name / description
      Added value: +"Exact name of the sequence to delete. Required."
  2. First observedv0.1.4

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the annotations (destructive hint), the description details that deletion is irreversible, returns no content, and affects subsequent operations on the same name, providing strong transparency about 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is slightly verbose with three sentences, but each adds value: the action, the comparison, and the side effects. It is not overly long for the information conveyed.

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?

Given there is no output schema, the description clarifies the return (no content) and explains the impacts of deletion on subsequent calls. It provides sufficient context for safe invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The sole parameter 'name' is described as 'Exact name of the sequence to delete', which is clear and covers the required semantics. Schema coverage is 100%.

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 clearly states the tool deletes a sequence permanently, using the specific verb 'delete' and the resource 'sequence'. It also contrasts with the soft-delete behavior of a sibling tool, making the purpose unambiguous.

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

Usage Guidelines4/5

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

The description implicitly guides usage by contrasting with the soft-delete alternative, indicating this tool is for hard, permanent deletion. However, it does not explicitly state conditions for when to choose this over other tools.

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