productivity
Mailtrap MCP Integration for Vercel AI SDK
Connect Mailtrap to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Mailtrap to Vercel AI SDK
Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.
Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with
--write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.
Mailtrap MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-mailtrap": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=mailtrap",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=mailtrap --write=deny Why Use KosmoKrator Here
Expose only Mailtrap instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Mailtrap Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the Mailtrap integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__mailtrap__mailtrap_list_inboxes | mailtrap.mailtrap_list_inboxes | Read | List all inboxes in the Mailtrap account. Returns inbox IDs, names, and email addresses. |
integration__mailtrap__mailtrap_get_inbox | mailtrap.mailtrap_get_inbox | Read | Get details for a specific Mailtrap inbox by ID, including its email address, settings, and message counts. |
integration__mailtrap__mailtrap_list_messages | mailtrap.mailtrap_list_messages | Read | List messages in a Mailtrap inbox with optional search and pagination. |
integration__mailtrap__mailtrap_get_message | mailtrap.mailtrap_get_message | Read | Get a single message from a Mailtrap inbox by its ID, including subject, sender, recipient, and body. |
integration__mailtrap__mailtrap_send_test_email | mailtrap.mailtrap_send_test_email | Write | Send a test email through Mailtrap. Provide sender, recipient(s), subject, and either text or HTML body. |
integration__mailtrap__mailtrap_list_suppressions | mailtrap.mailtrap_list_suppressions | Read | List suppressions (blocked recipients) for a Mailtrap inbox. |
integration__mailtrap__mailtrap_get_current_user | mailtrap.mailtrap_get_current_user | Read | Get the current Mailtrap user profile and account info. Useful as a health check. |