Mailjet MCP Integration for Cursor
Connect Mailjet to Cursor through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Mailjet to Cursor
Expose selected local integrations to Cursor through KosmoKrator without configuring each service as its own MCP server.
Create or update .cursor/mcp.json with a KosmoKrator stdio server entry. The gateway is local, scoped to this integration, and starts with
--write=deny so Cursor can inspect read-capable tools without receiving write access by default.
Mailjet MCP Config for Cursor
Use the same KosmoKrator install and integration credentials that power terminal and headless runs.
{
"mcpServers": {
"kosmokrator-mailjet": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=mailjet",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=mailjet --write=deny Why Use KosmoKrator Here
Expose only Mailjet 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.
Mailjet Tools Visible to Cursor
Cursor sees stable MCP tool names generated from the Mailjet integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__mailjet__mailjet_send_email | mailjet.mailjet_send_email | Write | Send an email via Mailjet. Specify sender, one or more recipients, subject, and HTML body. |
integration__mailjet__mailjet_list_contacts | mailjet.mailjet_list_contacts | Read | List contacts in the Mailjet account. Returns paginated contact data including email addresses and metadata. |
integration__mailjet__mailjet_get_contact | mailjet.mailjet_get_contact | Read | Get details for a single Mailjet contact by ID or email address. |
integration__mailjet__mailjet_create_contact | mailjet.mailjet_create_contact | Write | Create a new contact in Mailjet. Provide the email address to add. |
integration__mailjet__mailjet_list_campaigns | mailjet.mailjet_list_campaigns | Read | List email campaigns in the Mailjet account. Returns campaign IDs, subjects, and status. |
integration__mailjet__mailjet_get_campaign | mailjet.mailjet_get_campaign | Read | Get details for a single Mailjet email campaign by ID. |
integration__mailjet__mailjet_list_templates | mailjet.mailjet_list_templates | Read | List email templates available in the Mailjet account. |
integration__mailjet__mailjet_get_stats | mailjet.mailjet_get_stats | Read | Get email statistics from the Mailjet statcounters endpoint. Returns send, delivery, open, click, and bounce counts. |
integration__mailjet__mailjet_get_current_user | mailjet.mailjet_get_current_user | Read | Get the authenticated Mailjet user profile information. |