productivity
Resend MCP Gateway for AI Agents
Expose Resend tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
10 functions 5 read 5 write API key auth
Resend MCP Gateway
Expose Resend to MCP clients with `kosmokrator mcp:serve --integration=resend`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=resend --write=deny --json {
"mcpServers": {
"kosmokrator-resend": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=resend",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=resend --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__resend__resend_send_email | resend.resend_send_email | Write write |
integration__resend__resend_get_email | resend.resend_get_email | Read read |
integration__resend__resend_list_emails | resend.resend_list_emails | Read read |
integration__resend__resend_create_api_key | resend.resend_create_api_key | Write write |
integration__resend__resend_list_api_keys | resend.resend_list_api_keys | Read read |
integration__resend__resend_create_domain | resend.resend_create_domain | Write write |
integration__resend__resend_get_domain | resend.resend_get_domain | Read read |
integration__resend__resend_list_domains | resend.resend_list_domains | Read read |
integration__resend__resend_verify_domain | resend.resend_verify_domain | Write write |
integration__resend__resend_create_contact | resend.resend_create_contact | Write write |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.