marketing
Zendesk Marketing MCP Integration for Vercel AI SDK
Connect Zendesk Marketing to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Zendesk Marketing 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.
Zendesk Marketing MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-zend": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=zend",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=zend --write=deny Why Use KosmoKrator Here
Expose only Zendesk Marketing 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.
Zendesk Marketing Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the Zendesk Marketing integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__zend__zend_list_campaigns | zend.zend_list_campaigns | Read | List all email marketing campaigns in your Zendesk account. Returns campaign IDs, subjects, and status. |
integration__zend__zend_get_campaign | zend.zend_get_campaign | Read | Get detailed information about a specific email marketing campaign, including subject, content, and delivery stats. |
integration__zend__zend_create_campaign | zend.zend_create_campaign | Write | Create a new email marketing campaign with subject, content, and target lists. |
integration__zend__zend_list_lists | zend.zend_list_lists | Read | List all subscriber lists in your Zendesk account. Returns list IDs and names. |
integration__zend__zend_get_list | zend.zend_get_list | Read | Get detailed information about a specific subscriber list, including subscriber counts and custom fields. |
integration__zend__zend_list_subscribers | zend.zend_list_subscribers | Read | List subscribers on a Zendesk list. Returns email addresses, names, and subscription dates. |
integration__zend__zend_get_subscribers | zend.zend_get_subscribers | Read | Get detailed information about a specific subscriber, including email, name, and subscription status. |
integration__zend__zend_get_current_user | zend.zend_get_current_user | Read | Get the authenticated user's Zendesk account details, including name and email. |