data
Moosend MCP, CLI, and Lua Integration for AI Agents
Moosend integration docs for AI agents: MCP gateway setup, Moosend CLI commands, Lua API reference, credentials, and function schemas.Moosend for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
moosend.moosend_list_mailing_lists | Read read | 2 | List all mailing lists in your Moosend account. Returns list IDs, names, and subscriber counts. |
moosend.moosend_get_mailing_list | Read read | 1 | Get detailed information about a specific mailing list in Moosend, including subscriber counts and settings. |
moosend.moosend_create_mailing_list | Write write | 1 | Create a new mailing list in Moosend. Returns the newly created list with its ID. |
moosend.moosend_list_subscribers | Read read | 4 | List subscribers for a specific mailing list in Moosend. Supports filtering by status and pagination. |
moosend.moosend_add_subscriber | Write write | 3 | Add a new subscriber to a Moosend mailing list. Requires an email address; name is optional. |
moosend.moosend_list_campaigns | Read read | 3 | List all email campaigns in your Moosend account. Supports filtering by status and pagination. |
moosend.moosend_get_current_user | Read read | 0 | Get the current authenticated Moosend user. Useful as a health check to verify API connectivity. |