SenderKit

Build and send email, SMS, push, and web-push from your AI coding agent.

От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноМожет изменять данные

Что умеет

  • Senderkit Context: Returns the connected workspace (id, name, slug) and the send mode (live or test) for this connection. The mode is fixed for the whole connection. Call this before sending so you ca
  • Senderkit Send: Send a templated message to a recipient. This connection is bound to one mode: in TEST mode messages are recorded but NOT delivered; in LIVE mode they are really sent. The active mode
  • Senderkit Send Raw: Send inline content without a registered template. This connection is bound to one mode: in TEST mode messages are recorded but NOT delivered; in LIVE mode they are really sent. Th

Какие данные видит

Нужен ли аккаунт

Не нужен: сервер работает без входа

Build and send email, SMS, push, and web-push from your AI coding agent.

Список инструментов сервера (10)

Технические названия из tools/list. Нужны только разработчикам.

senderkit_contextReturns the connected workspace (id, name, slug) and the send mode (live or test) for this connection. The mode is fixed for the whole connection. Call this before sending so you can tell the user which workspace they're in and whether messages will be really delivered (live) or only recorded without delivery (test).
senderkit_sendSend a templated message to a recipient. This connection is bound to one mode: in TEST mode messages are recorded but NOT delivered; in LIVE mode they are really sent. The active mode is returned by the senderkit_context tool and as `mode` in this tool's result — check it and tell the user which it is; do not ask which API key is configured.
senderkit_send_rawSend inline content without a registered template. This connection is bound to one mode: in TEST mode messages are recorded but NOT delivered; in LIVE mode they are really sent. The active mode is returned by the senderkit_context tool and as `mode` in this tool's result — check it and tell the user which it is; do not ask which API key is configured.
senderkit_templates_listList available templates.
senderkit_templates_getFetch a single template by slug.
senderkit_messages_listList messages, optionally filtered.
senderkit_messages_getFetch a single message by ID.
senderkit_cancel_messageCancel a still-pending message (scheduled or queued) by its public id.
senderkit_templates_createGenerate a new email/SMS/push template from a plain-language brief and save it as a DRAFT. Returns a link to review it in the editor. Nothing is sent until the user reviews and publishes the draft.
senderkit_templates_regenerateRegenerate an existing DRAFT template from a new brief. This REPLACES the draft's content and DISCARDS any manual edits made in the editor — warn the user before calling. Only drafts can be regenerated; published templates are left untouched.