MX Technologies integration
MX Technologies provides a comprehensive API platform for aggregating and…
- Provider
- mx_technologies
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 36 available
Quick start
Call MX Technologies from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to MX Technologies's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"MX_TECHNOLOGIES_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own MX Technologies API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
36 actions exposed via the
MX Technologies integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
MX_TECHNOLOGIES_CANCEL_PARTNER_ACCOUNT -
MX_TECHNOLOGIES_CREATE_ACCOUNT -
MX_TECHNOLOGIES_CREATE_AUDIENCE_API_CREDENTIALS -
MX_TECHNOLOGIES_CREATE_MEMBER -
MX_TECHNOLOGIES_CREATE_PARTNER_ACCOUNT -
MX_TECHNOLOGIES_FETCH_REWARDS -
MX_TECHNOLOGIES_GET_CONFIGURABLE_WIDGET_URL -
MX_TECHNOLOGIES_LIST_ACCOUNT_NUMBERS_BY_MEMBER -
MX_TECHNOLOGIES_LIST_ACCOUNT_OWNERS -
MX_TECHNOLOGIES_LIST_ACCOUNTS -
MX_TECHNOLOGIES_LIST_BUDGETS -
MX_TECHNOLOGIES_LIST_CATEGORIES
Show all 36 actions
-
MX_TECHNOLOGIES_LIST_CHALLENGES -
MX_TECHNOLOGIES_LIST_FAVORITE_INSTITUTIONS -
MX_TECHNOLOGIES_LIST_GOALS -
MX_TECHNOLOGIES_LIST_INSTITUTION_CREDENTIALS -
MX_TECHNOLOGIES_LIST_INSTITUTIONS -
MX_TECHNOLOGIES_LIST_MEMBER_ACCOUNTS -
MX_TECHNOLOGIES_LIST_MEMBERS -
MX_TECHNOLOGIES_LIST_REWARDS -
MX_TECHNOLOGIES_LIST_STATEMENTS_BY_MEMBER -
MX_TECHNOLOGIES_LIST_TAGGINGS -
MX_TECHNOLOGIES_LIST_TAGS -
MX_TECHNOLOGIES_LIST_TRANSACTIONS -
MX_TECHNOLOGIES_LIST_TRANSACTIONS_BY_MEMBER -
MX_TECHNOLOGIES_LIST_USERS -
MX_TECHNOLOGIES_READ_ACCOUNT -
MX_TECHNOLOGIES_READ_CATEGORY -
MX_TECHNOLOGIES_READ_FDX_ACCOUNT -
MX_TECHNOLOGIES_READ_INSTITUTION -
MX_TECHNOLOGIES_READ_TRANSACTION -
MX_TECHNOLOGIES_READ_TRANSACTION_BY_ACCOUNT -
MX_TECHNOLOGIES_READ_TRANSACTION_RULE -
MX_TECHNOLOGIES_UPDATE_TRANSACTION -
MX_TECHNOLOGIES_UPDATE_TRANSACTION_RULES -
MX_TECHNOLOGIES_UPDATE_USERS_TAGGINGS
Build with MX Technologies
Open OverSkill, describe what you want to build, and reference MX Technologies in your prompt — the AI will wire up the integration automatically.