Skip to main content
Glama

mailchimp

Update member

mailchimp_update_member
Destructive

Update an existing audience member (by email or subscriber_hash). Only the fields you supply change. REST: PATCH /lists/{list_id}/members/{subscriber_hash} (email → MD5 hash).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNoMember email address — MD5-hashed (lowercased) into the subscriber_hash for you.
statusNoNew subscription status.
list_idYesThe audience (list) id.
merge_fieldsNoMerge-field values to set, e.g. { FNAME: "Ada" }.
subscriberHashNoThe subscriber_hash (MD5 of lowercased email) or contact id, if you have it instead of `email`.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

The annotation already provides destructiveHint=true, and the description adds valuable behavioral details: partial update semantics ('Only the fields you supply change') and the email-to-MD5-hash transformation. This goes beyond the annotation without contradicting it.

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 extremely concise, with three short sentences that front-load the action and add only relevant details: action, partial-update behavior, and REST endpoint/hash context. Every sentence earns its place with no redundancy.

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?

The description is complete enough for this tool's complexity. It covers purpose, identification, partial-update behavior, and endpoint. While there is no output schema to explain return values, that is not essential for invoking an update tool; required parameters are already documented in the schema.

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 description coverage is 100%, so the baseline is 3. The description adds extra meaning by clarifying the partial-update behavior, which applies to all optional parameters. This is not explicitly stated in the schema descriptions and helps the agent understand parameter semantics.

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 clearly states the action ('Update'), the specific resource ('existing audience member'), and the means of identification ('by email or subscriber_hash'). It distinguishes itself from sibling tools like add_member and archive_member by explicitly targeting existing members for modification.

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

Usage Guidelines4/5

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

The description clearly implies use for updating existing members rather than adding or archiving. It provides contextual guidance that only supplied fields change, which helps the agent decide when to use this tool. However, it does not explicitly name alternative tools or state when not to use it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct resource-action pair, with clear distinctions between get/list/search for members and between add/update/archive for member changes. There is no meaningful overlap that would confuse an agent.

Naming Consistency5/5

All tools follow the consistent mailchimp_verb_noun pattern in snake_case, making the action and resource predictable from the name. Deviation is minimal and stylistic.

Tool Count4/5

With 18 tools, the count is slightly above the typical 3-15 range, but each tool covers a distinct Mailchimp resource (audiences, members, campaigns, reports, templates, automations, segments), so the breadth is justified.

Completeness2/5

The surface is heavily read-focused; write operations exist only for members (add, update, archive). Core workflows like creating or updating audiences, campaigns, templates, and segments are missing, which would hinder agents from performing typical Mailchimp tasks.