Skip to main content
Glama

delete

DestructiveIdempotent

Delete a file. Creates a tombstone version; content is recoverable via restore. Writing to the same path later resurrects it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesFile to delete, relative to the workspace root.
workspaceNoWorkspace slug. Optional, defaults to "temp".
override_lockNoDelete even if another agent holds a lock. Recorded in the activity log.
expected_versionNoFail with VERSION_CONFLICT unless the file is currently at this version.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already indicate destructive and idempotent behavior, but the description adds the non-obvious tombstone/recoverable semantics and resurrection on subsequent writes. This goes beyond the annotations, providing critical safety-relevant behavior that an agent must know before calling delete.

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 compact sentences with high information density. Every phrase earns its place: what it does, the tombstone side-effect, recoverability via restore, and resurrection behavior. No fluff or repetition.

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 4-parameter delete tool with no output schema, the description covers the core behavior and the most important side effects. It omits lock-related nuances and version conflict behavior, but those are already described in the schema. The tombstone and resurrection details make it sufficiently complete for safe invocation.

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 100%, so all four parameters (path, workspace, override_lock, expected_version) are documented in the schema. The description adds no parameter-specific meaning, earning the baseline 3.

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 opens with 'Delete a file' – a specific verb and resource. It further distinguishes from siblings by explaining the tombstone behavior, making it clear this is a recoverable delete, not a destructive erase. This clearly separates it from read, write, move, and restore.

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?

The description implies use when you want to delete a file, and the note about resurrection hints at recovering via rewrite, but it does not explicitly compare to alternatives like move or restore. There is no direct 'use X instead' guidance, making the usage context clear but not deeply differentiated.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool targets a distinct operation: file CRUD (write, read, edit, delete), versioning (history, restore), search (grep, list with q), locking (lock, unlock), uploads (request_upload, finalize_upload), and activity tracking. Even similar tools like request_upload and finalize_upload are complementary rather than overlapping.

Naming Consistency4/5

Tool names are lowercase and action-oriented, with single-word verbs (read, write, delete) and two compound verbs (request_upload, finalize_upload) following a verb_noun pattern. This is consistent enough to be predictable, though the mix of single words and compound words is a minor deviation.

Tool Count5/5

14 tools is well-scoped for a versioned file management server. Each tool covers a necessary aspect of the domain—file operations, version control, search, locking, uploads, and activity—without unnecessary bloat or missing critical functionality.

Completeness5/5

The tool set covers the full lifecycle of file management: create/write, read, edit, delete, restore, list, search, lock, unlock, upload/download (via request_upload/finalize_upload and read's download URL). The only potential gap is a copy operation, but that can be achieved with read+write. All workflows have no dead ends.