Skip to main content
Glama
verifyax

VerifyAX MCP

Official
by verifyax

Delete agent

delete_agent
DestructiveIdempotent

Permanently remove an agent from your VerifyAX workspace using its UUID. Returns deletion confirmation; this action cannot be undone.

Instructions

Permanently deletes an agent from your VerifyAX workspace by its uuid. This cannot be undone. Returns confirmation of the deletion.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_uuidYesThe uuid of the agent to permanently delete.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.5
  2. Removedv1.0.1
  3. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

The description reinforces the destructive hint with 'permanently deletes' and 'cannot be undone', and adds that it returns a confirmation. It does not contradict the idempotent hint, though it does not explain idempotency behavior.

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 concise sentences that front-load the key information. Every word adds value, no filler.

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 simple deletion tool with one parameter and no output schema, the description is sufficiently complete. It could specify the format of the confirmation, but the current text is adequate.

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 has 100% coverage with a description for agent_uuid. The description adds 'by its uuid', which is redundant. No additional parameter meaning is provided beyond 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 the action (permanently deletes), resource (agent), and method (by uuid). It distinguishes well from sibling tools like evaluate_agent or list_recent_runs, none of which involve deletion.

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 implies when to use (when you want to permanently delete an agent) and notes the irreversible nature, but does not explicitly state when not to use or list alternatives. However, given the unique deletion purpose among siblings, this is clear enough.

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