sales
Zendesk Sell MCP Integration for Vercel AI SDK
Connect Zendesk Sell to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Zendesk Sell 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 Sell MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-zendesk-sell": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=zendesk-sell",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=zendesk-sell --write=deny Why Use KosmoKrator Here
Expose only Zendesk Sell 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 Sell Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the Zendesk Sell integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__zendesk_sell__zendesk_sell_list_contacts | zendesk-sell.zendesk_sell_list_contacts | Read | List contacts in Zendesk Sell. Returns paginated results sorted by the specified field. Use this to browse, search, or export contacts from the CRM. |
integration__zendesk_sell__zendesk_sell_get_contact | zendesk-sell.zendesk_sell_get_contact | Read | Get full details of a specific contact in Zendesk Sell by its ID. Returns all contact fields including email, phone, organization, and custom fields. |
integration__zendesk_sell__zendesk_sell_create_contact | zendesk-sell.zendesk_sell_create_contact | Write | Create a new contact in Zendesk Sell. Provide at least a first name and last name. Optionally include email and organization ID to associate the contact with an existing organization. |
integration__zendesk_sell__zendesk_sell_list_deals | zendesk-sell.zendesk_sell_list_deals | Read | List deals in Zendesk Sell. Optionally filter by status (open, won, lost, abandoned). Returns paginated results. |
integration__zendesk_sell__zendesk_sell_get_deal | zendesk-sell.zendesk_sell_get_deal | Read | Get full details of a specific deal in Zendesk Sell by its ID. Returns deal value, status, associated contact and organization, pipeline stage, and custom fields. |
integration__zendesk_sell__zendesk_sell_list_leads | zendesk-sell.zendesk_sell_list_leads | Read | List leads in Zendesk Sell. Returns paginated results with lead details including contact info, status, and source. |
integration__zendesk_sell__zendesk_sell_get_current_user | zendesk-sell.zendesk_sell_get_current_user | Read | Get the profile of the currently authenticated Zendesk Sell user. Use this to verify credentials and identify the connected account. |