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.
6 functions 4 read 2 write Bearer token auth
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.
Machine-Readable Metadata
- integration_slug
amazon-ses- route_slug
amazon-ses- package
amazon-ses- auth_strategy
bearer_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Amazon SES CLIHeadless setup and direct function calls. Amazon SES MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Amazon SES MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Amazon SES.
Claude Code Amazon SES MCP setup for Claude Code. Cursor Amazon SES MCP setup for Cursor. Codex Amazon SES MCP setup for Codex. OpenAI Agents Amazon SES MCP setup for OpenAI Agents SDK. Claude Agent SDK Amazon SES MCP setup for Claude Agent SDK. Vercel AI SDK Amazon SES MCP setup for Vercel AI SDK. LangChain Amazon SES MCP setup for LangChain. LangGraph Amazon SES MCP setup for LangGraph. CrewAI Amazon SES MCP setup for CrewAI. MCP clients Amazon SES MCP setup for Generic MCP Clients.
Amazon SES CLI Matrix
Use these pages for direct Amazon SES CLI workflows in scripts, CI, cron, and agent wrappers.
CI Amazon SES CLI for CI. Cron Jobs Amazon SES CLI for cron jobs. Shell Scripts Amazon SES CLI for shell scripts. Headless Automation Amazon SES CLI for headless automation. Coding Agents Amazon SES CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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_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_list_suppressions | Read read | 3 | List email addresses on the suppression list for a specific configuration set in Amazon SES. Suppressed addresses will not receive emails. |
amazon-ses.amazonses_get_current_user | Read read | 0 | Get the currently authenticated user for the Amazon SES integration. Useful for verifying credentials and account information. |