Skip to main content
Glama
deyikong

SendGrid MCP Server

by deyikong

List Single Send Campaigns

list_single_sends
Read-onlyIdempotent

List all single send campaigns to review email marketing sends, with optional pagination for large result sets.

Instructions

List all single send campaigns

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
page_sizeNoNumber of results to return
page_tokenNoPagination token from a previous response

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.1.1
    • removedInput schema / additionalProperties
      Removed value: -false
  2. Changed1 schema field changedv1.1.0
    • addedInput schema / properties / page_token
      Added value: +{
      +  "description": "Pagination token from a previous response",
      +  "type": "string"
      +}
  3. Changed2 schema fields changedv1.0.0
    • addedInput schema / $schema
      Added value: +"http://json-schema.org/draft-07/schema#"
    • addedInput schema / additionalProperties
      Added value: +false
  4. First observed

TDQS

A3.5/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds no additional behavioral context such as pagination behavior, ordering, or how 'all' relates to page_size/page_token, leaving the agent to infer these details from the schema.

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 efficient sentence with no filler. Every word contributes to the meaning, and the key scope word 'all' is included.

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

Completeness3/5

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

This is a simple list operation with two optional, well-documented parameters and safe annotations, so the description is mostly adequate. However, there is no output schema and the description does not mention that results are paginated or describe the response shape, leaving minor but real gaps.

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%, with page_size and page_token already documented in the input schema. The description adds no param-level meaning, so the baseline score of 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 states a specific verb ('List') and a specific resource ('all single send campaigns'), which clearly distinguishes it from singular or creator/stats siblings like get_single_send, open_single_send_creator, and open_single_send_stats. An agent can understand exactly what this tool returns.

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 tool's purpose is clear, and 'list all' implies it should be used when a collection of single send campaigns is needed rather than a single campaign. However, there is no explicit guidance about when to prefer this tool over alternatives such as get_single_send, and no exclusions or context are provided.

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