Use the Mailer Send CLI from KosmoKrator to call Mailer Send tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
Mailer Send can be configured headlessly with `kosmokrator integrations:configure mailer-send`.
# Install KosmoKrator first if it is not available on PATH.curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash# Configure and verify this integration.kosmokrator integrations:configure mailer-send --set api_token="$MAILER_SEND_API_TOKEN" --enable --read allow --write ask --jsonkosmokrator integrations:doctor mailer-send --jsonkosmokrator integrations:status --json
Credentials
Authentication type: API tokenapi_token. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
api_token
MAILER_SEND_API_TOKEN
Secret secret
yes
API Token
Call Mailer Send Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to Mailer Send.
mailer-send.mailer_send_list_messages
Read read
List email messages from your MailerSend account. Returns a paginated list of sent messages with their IDs, subjects, and statuses.
Send an email through the MailerSend API. Requires a sender (from), one or more recipients (to), and a subject. Optionally provide HTML and/or plain text content.
Verify MailerSend API connectivity by fetching a minimal list of domains. Use this as a health check to confirm the API token is valid and the service is reachable.
Send an email through the MailerSend API. Requires a sender (from), one or more recipients (to), and a subject. Optionally provide HTML and/or plain text content.
Maximum number of recipients to return per page (default: 25).
page
integer
no
Page number for pagination (default: 1).
mailer-send.mailer_send_get_current_user
Verify MailerSend API connectivity by fetching a minimal list of domains. Use this as a health check to confirm the API token is valid and the service is reachable.
Headless calls still follow the integration read/write permission policy. Configure read/write defaults
with integrations:configure. Add --force only for trusted automation that should bypass that policy.