Skip to main content
Glama
Quantamorph

@glubler/mcp-server

by Quantamorph

delete_glubler

Permanently delete a Glubler collection and all its child items using the unique Glubler ID. Removes nested subglublers to clean up your catalog.

Instructions

Delete a Glubler collection and its child items permanently.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
glublerIdYesThe unique Glubler ID string to delete.

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 provided, the description carries the full burden of behavioral disclosure. It does add useful context by stating 'permanently' and 'child items' indicating irreversible cascading deletion. However, it omits details about authorization requirements, potential side effects, or error behavior, which are important for a destructive operation.

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?

The description is a single sentence with no redundancy. It efficiently conveys the action, scope, and permanence, making it easy to parse and remember.

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 delete operation with one parameter and no output schema, the description covers the essential purpose and effect. However, it could be more complete by mentioning that the user must be authenticated or own the collection, or by indicating potential error conditions. These gaps are moderate given the tool's simplicity.

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?

The schema already fully documents the single parameter 'glublerId' with a clear description, so the baseline is 3. The tool description adds no extra meaning beyond what the schema provides, leaving parameter semantics entirely to the schema.

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 a specific verb 'Delete' and a specific resource 'Glubler collection' and explicitly notes it includes child items and is permanent. This distinguishes it from siblings like create_glubler, rename_glubler, and get_glubler_details, so an agent can immediately understand its purpose.

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?

The description provides no guidance on when to use this tool versus alternatives, nor does it mention any prerequisites like authentication or ownership. It also doesn't state when not to use it, leaving the agent without context for selecting this tool over others.

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