Skip to main content
Glama

Delete filesystem

lambda_delete_filesystem
Destructive

Delete a persistent filesystem by id. Irreversible — DESTROYS all data on it. The filesystem must not be attached to any instance. Lambda Cloud REST: DELETE /api/v1/filesystems/{id}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe filesystem id to delete.

Schema Changelog

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

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

While annotations include destructiveHint=true, the description adds critical context: 'Irreversible — DESTROYS all data on it,' which goes beyond the annotation. It also discloses the attachment constraint, providing fuller behavioral transparency.

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 sentences, front-loaded with the core action, followed by warnings and a constraint. The REST endpoint is a minor but useful addition. No wasted words.

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 simple one-parameter delete operation with destructive annotations, the description covers the action, irreversibility, and a critical precondition. With no output schema, no further return-value explanation is needed. This is complete.

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 input schema has 100% coverage with the description 'The filesystem id to delete.' The description merely says 'by id' and adds no additional semantics beyond the schema, so the baseline of 3 applies.

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 'Delete a persistent filesystem by id' with a specific verb and resource, and includes the REST endpoint. This distinguishes it from sibling tools like lambda_create_filesystem and lambda_list_filesystems.

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?

Explicitly states a precondition: 'The filesystem must not be attached to any instance,' which serves as a when-not-to-use condition. It does not name alternatives, but none exist among siblings for this operation.

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.2/5.0
Disambiguation5/5

Each tool targets a distinct resource and action (e.g., list_instances vs. launch_instance vs. terminate_instances). There is no overlap or ambiguity between tools; even similar resources like firewall_rules and firewall_rulesets are clearly differentiated by name and description.

Naming Consistency5/5

All tool names follow the verb_noun pattern with the lambda_ prefix, using lowercase and underscores consistently. The verb clearly indicates the operation (list, get, create, delete, launch, update, restart, terminate), and the noun indicates the resource. Minor pluralization differences (e.g., list_instances vs. get_instance) are conventional and do not break consistency.

Tool Count5/5

15 tools is well-scoped for a GPU cloud management server, covering instances, filesystems, firewall rules, images, instance types, and audit events. Each tool serves a distinct purpose and no unnecessary duplication exists.

Completeness4/5

The instance lifecycle is well covered with launch, get, list, update, restart, and terminate. Filesystem and firewall read operations are present, but firewall rule/ruleset management (create/update/delete) is missing, which is a minor gap that may require working around via the dashboard.