Skip to main content
Glama

Run a Marketing Cloud Next / Data 360 action

mcnext_action

Calls Salesforce Marketing Cloud non-CRUD operations (publish, clone, activate, run, validate, search) with query, path, body, or file data; blocks destructive calls unless enabled.

Instructions

Invoke a non-CRUD operation (kind "action"): publish, unpublish, clone, activate, deactivate, run, execute, refresh, validate, search, query, resolve, merge, and similar. Some actions are destructive (delete/remove/cancel/deactivate) and are blocked unless MC_NEXT_ALLOW_DESTRUCTIVE=true. For file-upload endpoints, pass formData with an absolute file path for the "file" field.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoJSON request body, when the endpoint expects one.
queryNoQuery string parameters, e.g. { "pageSize": 50, "orderBy": "name" }.
headersNoAdditional request headers.
formDataNoForm-data fields for multipart endpoints; file fields take an absolute path.
endpointIdYesEndpoint id from the catalog, e.g. "content.create-an-email-with-html", "activations.query-activations". Use mcnext_list_endpoints to discover ids.
pathParamsNoPath parameter values, e.g. { "contentKey": "my-email" }.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden and does disclose an important safety behavior: destructive actions are blocked unless MC_NEXT_ALLOW_DESTRUCTIVE=true, plus the file-upload formData expectation. However, it does not address authorization, side effects, idempotency, or response/error behavior, leaving meaningful uncertainty for a generic action invoker.

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?

Two compact sentences: the first defines the tool's scope with examples, and the second packs two critical caveats (destructive actions and file uploads). There is no filler, and the most important usage guardrail appears early.

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?

For a generic endpoint-driven action tool with no output schema and no annotations, it provides adequate starting context: operation category, destructive-action guardrail, and file-upload format. It does not mention response/error behavior or per-endpoint discovery beyond what the schema already says about mcnext_list_endpoints, so completeness is moderate.

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%, so the baseline is 3. The description's formData hint largely restates the schema's note about file fields taking an absolute path, adding little beyond what the input schema already provides.

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 opens with a specific verb ('Invoke') and resource ('non-CRUD operation (kind "action")'), reinforced by a concrete list of action verbs. This clearly distinguishes the tool from the CRUD-oriented siblings like mcnext_create, mcnext_update, and mcnext_delete.

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 by framing the tool as the non-CRUD counterpart to sibling CRUD tools and gives representative action verbs, but it never explicitly names alternative tools or states when not to use it. The destructive-action guardrail adds a usage constraint but not tool-selection guidance.

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