Skip to main content
Glama

delete_trigger

DestructiveIdempotent

Remove an automated trigger permanently by its trigger ID. Find IDs with list_triggers; use pause_trigger to temporarily stop instead.

Instructions

Delete one trigger by trigger_id (find ids with list_triggers). The trigger is removed immediately and will no longer fire automatically; its registration cannot be recovered from this tool. To stop a trigger temporarily instead, use pause_trigger. An unknown trigger_id fails with not_found. Returns trigger_id with deleted: true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
trigger_idYesTrigger ID to delete.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior1/5

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

Description contradicts annotations: idempotentHint: true while description says 'An unknown trigger_id fails with not_found', implying repeated deletes of the same id fail (since the id becomes unknown). This is not idempotent behavior. Otherwise the description is transparent about immediacy, permanence, and return value, but the contradiction forces a score of 1.

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?

Three sentences, front-loaded with the action, then consequences, alternative, error handling, and return. No wasted words; every sentence adds value.

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 tool with no output schema, the description covers action, parameter sourcing, consequences, alternative, error case, and return format. Nothing an agent needs to call it correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema already describes trigger_id as 'Trigger ID to delete' (100% coverage). Description adds how to obtain it (list_triggers) and error semantics (not_found), exceeding the baseline for high coverage.

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?

Description clearly states 'Delete one trigger by trigger_id' – a specific verb and resource. It also names the alternative (pause_trigger) and the source for IDs (list_triggers), fully distinguishing it from siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly provides when to use (delete permanently) vs. alternative (use pause_trigger for temporary stop). Also tells the agent how to obtain the parameter (find ids with list_triggers) and what error to expect (not_found).

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

Deploy Server

Other Tools