sent-messaging
Original:🇺🇸 English
Translated
Send a message through Sent or retrieve a message and its activity history with the Sent MCP tools. Use for direct message operations and lifecycle checks; use messaging-performance-analyzer for aggregate delivery diagnosis.
152installs
Sourcesentdm/sent-plugin
Added on
NPX Install
npx skill4agent add sentdm/sent-plugin sent-messagingTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Sent Messaging
Operate direct message workflows with , , and .
messages.sendmessages.getmessages.activities.listEstablish connection and scope
- Let the MCP client perform OAuth 2.1/PKCE authorization. Never request, accept, print, or store tokens, API keys, authorization headers, client IDs, or secrets.
- Surface the organization and Sender Profile selected by the active connection before a mutation. If the client context does not expose both, use to inspect the authorized scope before continuing.
sent-account-readiness - Reauthorize in the client when the requested organization or Sender Profile differs from the active grant. Do not simulate a scope switch with payload fields.
- Minimize sensitive output. Mask phone numbers where practical and do not repeat message bodies after the operator has reviewed them.
If MCP is unsupported or authorization fails, keep the skill usable for payload planning. Explain that execution requires a compatible client or reauthorization; never ask the user to paste a credential.
Inspect a message
- Use for the current record when a message identifier is known.
messages.get - Use for lifecycle events and delivery evidence.
messages.activities.list - State that an accepted or queued send is not proof of delivery. Report delivered only when the returned state or activity establishes delivery.
- Return identifiers, timestamps, and status evidence needed to answer the question, masking recipient data and omitting the message body unless it is necessary.
For aggregate trends, funnels, or root-cause analysis across many delivery records, hand off to .
messaging-performance-analyzerPrepare a send
- Resolve the intended channel, Sender Profile, recipient, template or content, variables, scheduling inputs, and any idempotency field the tool supports. Do not invent missing values.
- For a high-volume send, use to check
sent-account-readinessbefore preparing the mutation. Stop if the available balance or account readiness is insufficient or unclear.balance.get - Build the exact arguments without calling the tool.
messages.send - Show a payload preview that includes the selected organization, Sender Profile, channel, exact destination, content or template identifier, variables, and scheduling/idempotency inputs. Show sensitive content once only; mask it where the operator can still verify the target.
- Ask for explicit confirmation for this exact payload. General approval given earlier in the conversation is not sufficient.
- Call immediately after that confirmation. If any payload value, scope, or elapsed context changes, discard the confirmation and preview again.
messages.send
Never call without the preview and explicit confirmation immediately before the call.
messages.sendHandle results and retries
- Report the message identifier and the returned acceptance state. Say "accepted" or "queued" when that is all the response establishes; do not say "delivered."
- Use or
messages.getwhen the user asks for subsequent delivery state.messages.activities.list - Treat every retry as a new mutation: reconstruct the payload, show a fresh preview, and obtain new explicit confirmation immediately before the retry.
- Never blindly retry an ambiguous send. If the first call times out or its outcome is unknown, inspect and
messages.getwhen an identifier exists. Without conclusive evidence, report the unknown outcome and duplication risk. Only attempt another send after the operator chooses to do so and completes a new preview and confirmation.messages.activities.list