ConvertKit MCP Integration for Vercel AI SDK
Connect ConvertKit to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect ConvertKit 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.
ConvertKit MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-convertkit": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=convertkit",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=convertkit --write=deny Why Use KosmoKrator Here
Expose only ConvertKit 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.
ConvertKit Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the ConvertKit integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__convertkit__convertkit_list_subscribers | convertkit.convertkit_list_subscribers | Read | List subscribers from your ConvertKit account. Supports pagination and date range filtering. |
integration__convertkit__convertkit_get_subscriber | convertkit.convertkit_get_subscriber | Read | Get details for a single ConvertKit subscriber by their subscriber ID. |
integration__convertkit__convertkit_list_forms | convertkit.convertkit_list_forms | Read | List all forms in your ConvertKit account. Returns form IDs and names. |
integration__convertkit__convertkit_list_tags | convertkit.convertkit_list_tags | Read | List all tags in your ConvertKit account. Returns tag IDs and names. |
integration__convertkit__convertkit_create_tag | convertkit.convertkit_create_tag | Write | Create a new tag in ConvertKit. |
integration__convertkit__convertkit_list_broadcasts | convertkit.convertkit_list_broadcasts | Read | List broadcasts (email blasts) from your ConvertKit account. Supports pagination. |
integration__convertkit__convertkit_get_current_user | convertkit.convertkit_get_current_user | Read | Get the authenticated ConvertKit account information, including account name, email, and plan details. |