Skip to main content
Glama
deyikong

SendGrid MCP Server

by deyikong

Remove Contacts from a Specific List

remove_contact_from_lists
Idempotent

Remove selected contacts from a specific email list by providing list ID and contact IDs. Clean up lists and keep your audience organized.

Instructions

Remove contacts from a specific email list

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
list_idYesID of the list to remove contacts from
contact_idsYesArray of contact IDs to remove from the list

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.1.1
    • removedInput schema / additionalProperties
      Removed value: -false
  2. Changed2 schema fields changedv1.0.0
    • addedInput schema / $schema
      Added value: +"http://json-schema.org/draft-07/schema#"
    • addedInput schema / additionalProperties
      Added value: +false
  3. First observed

TDQS

A3.6/5.0
Behavior3/5

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

The annotations already indicate this is a mutating (readOnlyHint=false), idempotent operation that is not destructive to underlying data (destructiveHint=false). The description adds only that it removes contacts from a specific list, which aligns with the annotations. It does not add extra behavioral context such as whether already-removed contacts are ignored, but the idempotentHint covers part of that.

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, front-loaded sentence with no filler or redundant restatement. Every word contributes to identifying the action, target, and scope, making it highly scannable for an agent.

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 two-parameter operation with full schema coverage, no output schema, and relevant annotations for idempotency and non-destructiveness, the description is largely complete. It could explicitly state that the contacts themselves are not deleted, but the phrase 'remove contacts from a specific email list' makes that distinction reasonably clear.

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%: the schema already documents list_id as the target list and contact_ids as the array of contact IDs to remove. The tool description adds no additional parameter-level meaning beyond the phrase 'specific email list', so the schema carries the burden and the description meets the baseline without exceeding it.

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 action ('Remove'), a specific object ('contacts'), and the scope ('from a specific email list'). This clearly distinguishes the tool from sibling tools like delete_contact, create_contact_with_lists, and list_contacts, so an agent can understand what it does without opening the schema.

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

Usage Guidelines2/5

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

The description gives no guidance on when to choose this tool over alternatives such as delete_contact, update_contact, or create_contact_with_lists. It does not state exclusions, prerequisites, or the relationship to sibling contact/list tools, so the agent is left to infer the appropriate usage context.

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