payments
Chargify MCP Integration for Vercel AI SDK
Connect Chargify to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Chargify 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.
Chargify MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-chargify": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=chargify",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=chargify --write=deny Why Use KosmoKrator Here
Expose only Chargify 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.
Chargify Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the Chargify integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__chargify__chargify_list_subscriptions | chargify.chargify_list_subscriptions | Read | List subscriptions from Chargify. Supports filtering by state (active, past_due, canceled, expired, trial, etc.) and pagination. |
integration__chargify__chargify_get_subscription | chargify.chargify_get_subscription | Read | Get detailed information for a single Chargify subscription by ID. |
integration__chargify__chargify_list_customers | chargify.chargify_list_customers | Read | List customers from Chargify. Supports pagination with page and per_page parameters. |
integration__chargify__chargify_get_customer | chargify.chargify_get_customer | Read | Get detailed information for a single Chargify customer by ID. |
integration__chargify__chargify_list_products | chargify.chargify_list_products | Read | List products available in Chargify. Supports pagination with page and per_page parameters. |
integration__chargify__chargify_list_invoices | chargify.chargify_list_invoices | Read | List invoices from Chargify. Supports filtering by status (open, paid, pending, voided) and pagination. |
integration__chargify__chargify_get_current_user | chargify.chargify_get_current_user | Read | Get the currently authenticated Chargify user. Useful for verifying API credentials. |