other
Recurly MCP Integration for OpenAI Agents SDK
Connect Recurly to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Recurly 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.
Recurly MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-recurly": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=recurly",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=recurly --write=deny Why Use KosmoKrator Here
Expose only Recurly 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.
Recurly Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Recurly integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__recurly__recurly_list_accounts | recurly.recurly_list_accounts | Read | List billing accounts from Recurly. Supports filtering by email and state, with cursor-based pagination. |
integration__recurly__recurly_get_account | recurly.recurly_get_account | Read | Get details of a specific Recurly billing account by its ID or account code. |
integration__recurly__recurly_create_account | recurly.recurly_create_account | Write | Create a new billing account in Recurly with a unique account code, email, and name. |
integration__recurly__recurly_list_subscriptions | recurly.recurly_list_subscriptions | Read | List subscriptions from Recurly. Supports filtering by account and state, with cursor-based pagination. |
integration__recurly__recurly_get_subscription | recurly.recurly_get_subscription | Read | Get details of a specific Recurly subscription by its UUID. |
integration__recurly__recurly_list_plans | recurly.recurly_list_plans | Read | List billing plans from Recurly. Supports cursor-based pagination. |
integration__recurly__recurly_get_current_user | recurly.recurly_get_current_user | Read | Verify the Recurly API connection by fetching the first account. Useful as a health check. |