Skip to main content
Glama

delete_experience

Remove a work experience entry by its ID. Use this to correct or clean up profile data.

Instructions

Delete a work experience entry by ID. Requires write permission.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesExperience ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states 'Requires write permission,' which is useful, but it does not disclose whether deletion is permanent, irreversible, or cascading, nor what happens if the ID does not exist. For a destructive operation, this is a significant gap.

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, concise sentence that front-loads the action and resource, followed by the permission requirement. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive tool with no annotations and no output schema, the description is too sparse. It does not explain the effect of deletion (permanence, cascading), error behavior, or any confirmation safeguards. An agent would benefit from knowing whether deletion is reversible or what the response indicates.

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 the schema already documents the 'id' parameter as 'Experience ID'. The description adds no further meaning beyond the schema, which is acceptable given full coverage. Baseline 3 is appropriate.

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 action ('Delete'), the resource ('a work experience entry'), and the required identifier ('by ID'). It is unambiguous and distinct from sibling tools like update_experience or list_experience.

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 the tool is for deleting a specific experience entry, which is clear from the verb and resource. However, it does not explicitly state when to use this tool versus alternatives, nor does it mention any prerequisites or conditions (e.g., cannot delete non-existent entries, impact on related data).

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