Skip to main content
Glama
deyikong

SendGrid MCP Server

by deyikong

Delete Automation

delete_automation
DestructiveIdempotent

Permanently delete a marketing automation by its ID. Use this action to remove an automation from SendGrid when it is no longer needed; this cannot be undone.

Instructions

Permanently delete a marketing automation. This action cannot be undone.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
automation_idYesThe automation ID to delete

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.1.1
    • removedInput schema / additionalProperties
      Removed value: -false
  2. Addedv1.0.4

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already flag destructiveHint=true and readOnlyHint=false, but the description adds meaningful behavioral context by stating the deletion is permanent and cannot be undone. This goes beyond the structured hints and gives the agent a stronger basis for warning about side effects.

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 two short sentences with no filler. The core action is front-loaded ('Permanently delete a marketing automation'), and the second sentence adds an important warning without redundancy.

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 single-parameter destructive action with comprehensive annotations and full schema coverage, the description is sufficient for an agent to select and invoke the tool correctly. The irreversibility warning compensates for the absence of an output schema by setting expectations about the action's consequences.

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 fully documents the only parameter, automation_id, as 'The automation ID to delete,' so schema coverage is 100%. The description does not add extra parameter-level detail, but the baseline of 3 applies because the schema already carries the semantic weight.

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 uses the specific verb 'delete' and identifies the exact resource, 'marketing automation,' making the operation unambiguous. The permanence qualifier and the irreversibility warning distinguish it from sibling tools like update_automation_settings or get_automation.

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 when to use the tool: when the intent is to permanently remove a marketing automation. However, it provides no explicit alternatives, exclusions, or conditions, such as 'use update_automation_settings to modify instead of deleting,' so guidance is mostly implicit.

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