Skip to main content
Glama
deyikong

SendGrid MCP Server

by deyikong

Get Automation Details

get_automation
Read-onlyIdempotent

Retrieve detailed information about a specific email automation, including all steps and settings.

Instructions

Get detailed information about a specific automation including all steps and settings

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
automation_idYesThe automation ID to retrieve

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

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds that the response includes all steps and settings, but does not disclose return shape, missing-ID behavior, or other quirks. That is acceptable but minimal.

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?

Single sentence, front-loaded with verb and resource, with no redundant filler. The phrase 'including all steps and settings' earns its place by specifying output scope.

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 getter with one required parameter and safety annotations, the description plus schema covers the essentials: what to pass, that the operation is read-only, and what comes back. Missing not-found behavior and output format are minor gaps given the low complexity.

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% — automation_id is fully described as 'The automation ID to retrieve'. The description adds no parameter-level detail beyond this, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific read operation ('Get detailed information') on a specific resource ('a specific automation') and clarifies the scope ('including all steps and settings'). This distinguishes it from mutation siblings like update_automation_settings and from list_automations, though it doesn't explicitly name an alternative.

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 usage when an agent needs full details for one automation, but gives no explicit when/when-not guidance or alternative routing. It doesn't say to use list_automations when an ID is unknown, so some inference is required.

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