data
Recurly MCP, CLI, and Lua Integration for AI Agents
Recurly integration docs for AI agents: MCP gateway setup, Recurly CLI commands, Lua API reference, credentials, and function schemas.Recurly for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
recurly.recurly_list_accounts | Read read | 4 | List billing accounts from Recurly. Supports filtering by email and state, with cursor-based pagination. |
recurly.recurly_get_account | Read read | 1 | Get details of a specific Recurly billing account by its ID or account code. |
recurly.recurly_create_account | Write write | 4 | Create a new billing account in Recurly with a unique account code, email, and name. |
recurly.recurly_list_subscriptions | Read read | 4 | List subscriptions from Recurly. Supports filtering by account and state, with cursor-based pagination. |
recurly.recurly_get_subscription | Read read | 1 | Get details of a specific Recurly subscription by its UUID. |
recurly.recurly_list_plans | Read read | 2 | List billing plans from Recurly. Supports cursor-based pagination. |
recurly.recurly_get_current_user | Read read | 0 | Verify the Recurly API connection by fetching the first account. Useful as a health check. |