KosmoKrator

productivity

Amazon SES MCP, CLI, and Lua Integration for AI Agents

Amazon SES integration docs for AI agents: MCP gateway setup, Amazon SES CLI commands, Lua API reference, credentials, and function schemas.

Amazon SES 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

FunctionTypeParametersDescription
amazon-ses.amazonses_send_email Write write 9 Send an email via Amazon SES. Specify the sender, recipient(s), subject, and body (HTML and/or plain text). Optionally reference a template or add reply-to addresses.
amazon-ses.amazonses_get_account Read read 0 Get Amazon SES account-level sending details.
amazon-ses.amazonses_get_template Read read 1 Retrieve an email template from Amazon SES by its name. Returns the template subject, HTML body, and text body.
amazon-ses.amazonses_list_templates Read read 2 List all email templates in Amazon SES. Returns template names and creation timestamps. Supports pagination.
amazon-ses.amazonses_create_template Write write 4 Create a new email template in Amazon SES. Templates can include HTML and plain text content with optional substitution variables (e.g., {{name}}).
amazon-ses.amazonses_update_template Write write 4 Update an existing Amazon SES email template.
amazon-ses.amazonses_delete_template Write write 1 Delete an Amazon SES email template by name.
amazon-ses.amazonses_list_suppressions Read read 3 List email addresses on the Amazon SES account-level suppression list. Suppressed addresses will not receive emails.
amazon-ses.amazonses_list_identities Read read 2 List Amazon SES verified email and domain identities.
amazon-ses.amazonses_get_identity Read read 1 Get Amazon SES identity details for an email address or domain.
amazon-ses.amazonses_list_configuration_sets Read read 2 List Amazon SES configuration sets.
amazon-ses.amazonses_api_get Read read 2 Call any signed Amazon SES v2 GET endpoint.
amazon-ses.amazonses_api_post Write write 2 Call any signed Amazon SES v2 POST endpoint.
amazon-ses.amazonses_api_put Write write 2 Call any signed Amazon SES v2 PUT endpoint.
amazon-ses.amazonses_api_delete Write write 2 Call any signed Amazon SES v2 DELETE endpoint.