Recurly MCP integration for AI agents.
Connect AI agents to Recurly through 10 structured actions, including get account, create account, and create plan. Review authentication, inputs, workflows…
- ACTION CONTRACTS
- 10
- AUTHENTICATION
- API key
- SOURCE STATUS
- Provider-backed
CATALOG SOURCE REVIEWED AUGUST 23, 2026 / ACTION NAMES AND SCHEMAS DERIVED FROM WORKING MACHINES PROVIDER SOURCE
CAPABILITY PROFILE
What the Recurly integration exposes
The Recurly Agent App exposes 10 provider-backed actions for finance work. Its current contract lets an authorized agent retrieve one recurly account by id or code, create a recurly account from json-friendly account fields, and create a fixed-price recurly plan with one or more currencies. These operations are called through Working Machines as typed capabilities rather than through browser navigation or copied UI steps.
A connection uses API key. Before execution, the agent can inspect the selected action, its required fields, declared scopes, and expected output contract. Provider credentials remain inside the Working Machines runtime; the calling agent receives the capability and its structured result, not the underlying secret.
For reliable operation, start with the narrowest action that satisfies the task, resolve stable provider identifiers before changing state, and validate the returned object or status after execution. Availability still depends on the connected Recurly account, granted provider permissions, workspace policy, region, plan, and upstream API behavior.
VERIFIED ACTION SAMPLE
Real Recurly capabilities.
Showing 10 of 10 actions. Risk labels are conservative signals based on operation names, not substitutes for provider documentation or runtime policy.
get_accountREADRetrieve one Recurly account by ID or code.
INPUTS: accountId
create_accountWRITECreate a Recurly account from JSON-friendly account fields.
INPUTS: code / username / email / firstName / lastName
create_planWRITECreate a fixed-price Recurly plan with one or more currencies.
INPUTS: code / name / currencies / intervalUnit / intervalLength
create_subscriptionWRITECreate a Recurly subscription for an existing account and plan.
INPUTS: planCode / currency / accountCode / quantity / unitAmount
get_planREADRetrieve one Recurly plan by ID or code.
INPUTS: planId
get_subscriptionREADRetrieve one Recurly subscription by ID or UUID.
INPUTS: subscriptionId
list_accountsREADList Recurly accounts with pagination and common filters.
INPUTS: ids / limit / order / sort / beginTime
list_plansREADList Recurly plans with pagination and common filters.
INPUTS: ids / limit / order / sort / beginTime
list_subscriptionsREADList Recurly subscriptions with pagination and common filters.
INPUTS: ids / limit / order / sort / beginTime
update_accountWRITEUpdate basic profile fields on a Recurly account.
INPUTS: accountId / username / email / firstName / lastName
INPUT CONTRACTS
Know what the action needs before it runs.
get_account
accountIdOPTIONAL- The Recurly account ID or code.
create_account
codeREQUIRED- The unique account code. This cannot be changed after creation.
usernameOPTIONAL- A secondary value for the account.
emailOPTIONAL- The email address used for account communication.
firstNameOPTIONAL- The account first name.
lastNameOPTIONAL- The account last name.
create_plan
codeREQUIRED- The unique plan code.
nameREQUIRED- The plan name.
currenciesREQUIRED- The fixed-price currencies for this plan.
intervalUnitOPTIONAL- Unit for the plan billing interval.
intervalLengthOPTIONAL- The number of interval units in each billing period.
create_subscription
planCodeREQUIRED- The code of the Recurly plan to subscribe to.
currencyREQUIRED- The 3-letter ISO 4217 currency code.
accountCodeREQUIRED- The existing Recurly account code.
quantityOPTIONAL- The subscription quantity.
unitAmountOPTIONAL- The subscription unit amount.
PROVIDER-SPECIFIC WORKFLOWS
Jobs this Agent App can support
Inspect Get Account
Retrieve one Recurly account by ID or code. Use this as a bounded discovery step, retain the returned identifier, and avoid expanding the read beyond the task's stated scope.
get_accountControl Create Account
Create a Recurly account from JSON-friendly account fields. Resolve the target first, present material changes for confirmation, and make retries idempotent where the provider supports it.
create_accountVerify with Get Plan
Retrieve one Recurly plan by ID or code. Compare the returned provider state with the intended outcome and preserve stable IDs or canonical links in the run record.
get_planSAFETY BOUNDARY
Operate Recurly with explicit limits
- Authorize Recurly with API key and grant only the provider access required by the selected actions.
- 4 actions are change-capable by name. Confirm the target identity and material parameters before allowing a write.
- Do not infer permission from catalog visibility. Workspace policy, connection identity, and upstream authorization still govern execution.
- No provider scope string is declared on the sampled actions. Verify the connected account's actual permissions in Recurly rather than assuming unrestricted access.
- After a call, inspect the structured result and execution record before reporting that the Recurly task completed successfully.
CONNECTION MODEL
API key
Recurly private API key used as the HTTP Basic Auth username with an empty password. Create or view keys on the Recurly API Credentials page: https://app.recurly.com/go/developer/api_keys.
Working Machines stores provider credentials behind the execution boundary. An agent can use an authorized connection identity, but catalog discovery alone does not reveal OAuth tokens, API keys, or provider secrets.
- READ SIGNALS
- 6
- WRITE SIGNALS
- 4
- HIGH IMPACT
- 0
- REVIEW SIGNALS
- 0
EVIDENCE AND AVAILABILITY
Provider reference
Action names, input fields, authentication types, and counts on this page are generated from the Working Machines provider catalog. Provider behavior, quotas, object semantics, account eligibility, and regional availability remain governed by Recurly.