billing
Zuora MCP Integration for OpenAI Agents SDK
Connect Zuora to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Zuora to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Zuora MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-zuora": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=zuora",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=zuora --write=deny Why Use KosmoKrator Here
Expose only Zuora 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.
Zuora Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Zuora integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__zuora__zuora_list_accounts | zuora.zuora_list_accounts | Read | List Zuora customer accounts. Returns account IDs, names, numbers, and status. Supports filtering and pagination. |
integration__zuora__zuora_get_account | zuora.zuora_get_account | Read | Get details of a specific Zuora account by its ID. Returns account name, number, status, balance, and billing information. |
integration__zuora__zuora_list_subscriptions | zuora.zuora_list_subscriptions | Read | List Zuora subscriptions. Returns subscription IDs, numbers, status, and key dates. Supports filtering by account, status, and more. |
integration__zuora__zuora_get_subscription | zuora.zuora_get_subscription | Read | Get details of a specific Zuora subscription by its ID. Returns subscription status, rate plans, charges, and key dates. |
integration__zuora__zuora_list_invoices | zuora.zuora_list_invoices | Read | List Zuora invoices. Returns invoice IDs, numbers, amounts, status, and dates. Supports filtering by account, status, and date. |
integration__zuora__zuora_list_payments | zuora.zuora_list_payments | Read | List Zuora payments. Returns payment IDs, numbers, amounts, status, and methods. Supports filtering by account, status, and date. |
integration__zuora__zuora_get_current_user | zuora.zuora_get_current_user | Read | Get the profile of the currently authenticated Zuora user. Returns user name, email, and tenant information. |