KosmoKrator

data

Airwallex MCP Gateway for AI Agents

Expose Airwallex tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

Airwallex MCP Gateway

Expose Airwallex to MCP clients with `kosmokrator mcp:serve --integration=airwallex`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server.

Install KosmoKrator
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
Install gateway entry
kosmokrator mcp:gateway:install --integration=airwallex --write=deny --json
MCP configuration
{
  "mcpServers": {
    "kosmokrator-airwallex": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=airwallex",
        "--write=deny"
      ]
    }
  }
}
Serve manually
kosmokrator mcp:serve --integration=airwallex --write=deny

Client Notes

Use one scoped MCP gateway entry, then adapt the config location to the client or framework.

Claude Code Connect local KosmoKrator integrations to Claude Code through one scoped MCP gateway entry. Claude Code can launch the local kosmo binary directly from the project MCP config.
Cursor Expose selected local integrations to Cursor through KosmoKrator without configuring each service as its own MCP server. Use the same KosmoKrator install and integration credentials that power terminal and headless runs.
Codex Use KosmoKrator as a local MCP proxy for Codex so coding sessions can reach selected integrations with explicit write policy. Keep write access denied or ask-based unless the workspace is trusted.
OpenAI Agents SDK Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway. Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
Claude Agent SDK Give Claude Agent SDK workflows access to KosmoKrator integrations through a local MCP server. Use a narrow integration list so the agent does not load unrelated tools.
Vercel AI SDK Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts. Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
LangChain Bridge LangChain agents to local KosmoKrator integration tools through MCP or headless CLI calls. Keep the gateway scoped to the integration and operation class needed by the chain.
LangGraph Run KosmoKrator integration calls from LangGraph nodes while preserving local credentials and permissions. Headless CLI calls fit repeatable graph edges; MCP fits exploratory agent nodes.
CrewAI Expose KosmoKrator integrations to CrewAI workers as scoped local tools. Use per-worker integration scopes to avoid giving every worker every tool.
Generic MCP Clients Connect any stdio-compatible MCP client to local KosmoKrator integration tools. Start with read-only write policy and expand only for trusted projects.

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names.

MCP toolSource functionType
integration__airwallex__airwallex_authentication_obtain_access_token airwallex.airwallex_authentication_obtain_access_token Read read
integration__airwallex__airwallex_billing_create_a_billing_customer airwallex.airwallex_billing_create_a_billing_customer Write write
integration__airwallex__airwallex_billing_update_a_billing_customer airwallex.airwallex_billing_update_a_billing_customer Write write
integration__airwallex__airwallex_billing_retrieve_a_billing_customer airwallex.airwallex_billing_retrieve_a_billing_customer Read read
integration__airwallex__airwallex_billing_get_list_of_blling_customers airwallex.airwallex_billing_get_list_of_blling_customers Read read
integration__airwallex__airwallex_billing_create_a_product airwallex.airwallex_billing_create_a_product Write write
integration__airwallex__airwallex_billing_update_a_product airwallex.airwallex_billing_update_a_product Write write
integration__airwallex__airwallex_billing_retrieve_a_product airwallex.airwallex_billing_retrieve_a_product Read read
integration__airwallex__airwallex_billing_get_list_of_products airwallex.airwallex_billing_get_list_of_products Read read
integration__airwallex__airwallex_billing_create_a_price_per_unit_one_off airwallex.airwallex_billing_create_a_price_per_unit_one_off Write write
integration__airwallex__airwallex_billing_update_a_price airwallex.airwallex_billing_update_a_price Write write
integration__airwallex__airwallex_billing_retrieve_a_price airwallex.airwallex_billing_retrieve_a_price Read read
integration__airwallex__airwallex_billing_get_list_of_prices airwallex.airwallex_billing_get_list_of_prices Read read
integration__airwallex__airwallex_billing_create_a_billing_checkout_payment airwallex.airwallex_billing_create_a_billing_checkout_payment Write write
integration__airwallex__airwallex_billing_update_a_billing_checkout airwallex.airwallex_billing_update_a_billing_checkout Write write
integration__airwallex__airwallex_billing_retrieve_a_billing_checkout airwallex.airwallex_billing_retrieve_a_billing_checkout Read read
integration__airwallex__airwallex_billing_get_list_of_billing_checkouts airwallex.airwallex_billing_get_list_of_billing_checkouts Read read
integration__airwallex__airwallex_billing_cancel_a_billing_checkout airwallex.airwallex_billing_cancel_a_billing_checkout Write write
integration__airwallex__airwallex_billing_create_an_invoice airwallex.airwallex_billing_create_an_invoice Write write
integration__airwallex__airwallex_billing_preview_an_invoice airwallex.airwallex_billing_preview_an_invoice Read read
integration__airwallex__airwallex_billing_update_an_invoice airwallex.airwallex_billing_update_an_invoice Write write
integration__airwallex__airwallex_billing_delete_a_draft_invoice airwallex.airwallex_billing_delete_a_draft_invoice Write write
integration__airwallex__airwallex_billing_retrieve_an_invoice airwallex.airwallex_billing_retrieve_an_invoice Read read
integration__airwallex__airwallex_billing_get_list_of_invoices airwallex.airwallex_billing_get_list_of_invoices Read read
integration__airwallex__airwallex_billing_finalize_an_invoice airwallex.airwallex_billing_finalize_an_invoice Read read
integration__airwallex__airwallex_billing_mark_an_invoice_as_paid airwallex.airwallex_billing_mark_an_invoice_as_paid Write write
integration__airwallex__airwallex_billing_void_an_invoice airwallex.airwallex_billing_void_an_invoice Read read
integration__airwallex__airwallex_billing_create_invoice_line_items_and_add_them_to_an_invoice airwallex.airwallex_billing_create_invoice_line_items_and_add_them_to_an_invoice Write write
integration__airwallex__airwallex_billing_get_list_of_invoices_line_items airwallex.airwallex_billing_get_list_of_invoices_line_items Read read
integration__airwallex__airwallex_billing_get_a_billing_transaction airwallex.airwallex_billing_get_a_billing_transaction Read read
integration__airwallex__airwallex_billing_get_a_list_of_billing_transactions airwallex.airwallex_billing_get_a_list_of_billing_transactions Read read
integration__airwallex__airwallex_billing_create_a_coupon airwallex.airwallex_billing_create_a_coupon Write write
integration__airwallex__airwallex_billing_update_a_coupon airwallex.airwallex_billing_update_a_coupon Write write
integration__airwallex__airwallex_billing_get_a_coupon airwallex.airwallex_billing_get_a_coupon Read read
integration__airwallex__airwallex_billing_get_list_of_coupons airwallex.airwallex_billing_get_list_of_coupons Read read
integration__airwallex__airwallex_billing_create_a_payment_source airwallex.airwallex_billing_create_a_payment_source Write write
integration__airwallex__airwallex_billing_get_a_payment_source airwallex.airwallex_billing_get_a_payment_source Read read
integration__airwallex__airwallex_billing_get_list_of_payment_sources airwallex.airwallex_billing_get_list_of_payment_sources Read read
integration__airwallex__airwallex_billing_create_a_meter airwallex.airwallex_billing_create_a_meter Write write
integration__airwallex__airwallex_billing_update_a_meter airwallex.airwallex_billing_update_a_meter Write write
integration__airwallex__airwallex_billing_retrieve_a_meter airwallex.airwallex_billing_retrieve_a_meter Read read
integration__airwallex__airwallex_billing_archive_a_meter airwallex.airwallex_billing_archive_a_meter Write write
integration__airwallex__airwallex_billing_restore_a_meter airwallex.airwallex_billing_restore_a_meter Read read
integration__airwallex__airwallex_billing_get_list_of_meters airwallex.airwallex_billing_get_list_of_meters Read read
integration__airwallex__airwallex_billing_get_summaries_of_a_meter airwallex.airwallex_billing_get_summaries_of_a_meter Read read
integration__airwallex__airwallex_billing_ingest_a_usage_event airwallex.airwallex_billing_ingest_a_usage_event Read read
integration__airwallex__airwallex_billing_batch_ingest_usage_events airwallex.airwallex_billing_batch_ingest_usage_events Read read
integration__airwallex__airwallex_billing_void_a_usage_event airwallex.airwallex_billing_void_a_usage_event Read read
integration__airwallex__airwallex_billing_create_a_subscription_checkout airwallex.airwallex_billing_create_a_subscription_checkout Write write
integration__airwallex__airwallex_billing_retrieve_a_subscription airwallex.airwallex_billing_retrieve_a_subscription Read read
integration__airwallex__airwallex_billing_update_a_subscription airwallex.airwallex_billing_update_a_subscription Write write
integration__airwallex__airwallex_billing_cancel_a_subscription airwallex.airwallex_billing_cancel_a_subscription Write write
integration__airwallex__airwallex_billing_get_list_of_subscriptions airwallex.airwallex_billing_get_list_of_subscriptions Read read
integration__airwallex__airwallex_issuing_get_authorization_status airwallex.airwallex_issuing_get_authorization_status Read read
integration__airwallex__airwallex_issuing_get_single_authorization_status airwallex.airwallex_issuing_get_single_authorization_status Read read
integration__airwallex__airwallex_issuing_create_a_cardholder airwallex.airwallex_issuing_create_a_cardholder Write write
integration__airwallex__airwallex_issuing_get_all_cardholders airwallex.airwallex_issuing_get_all_cardholders Read read
integration__airwallex__airwallex_issuing_get_cardholder_details airwallex.airwallex_issuing_get_cardholder_details Read read
integration__airwallex__airwallex_issuing_update_a_cardholder airwallex.airwallex_issuing_update_a_cardholder Write write
integration__airwallex__airwallex_issuing_create_a_card airwallex.airwallex_issuing_create_a_card Write write
integration__airwallex__airwallex_issuing_get_all_cards airwallex.airwallex_issuing_get_all_cards Read read
integration__airwallex__airwallex_issuing_get_sensitive_card_details airwallex.airwallex_issuing_get_sensitive_card_details Read read
integration__airwallex__airwallex_issuing_activate_a_card airwallex.airwallex_issuing_activate_a_card Write write
integration__airwallex__airwallex_issuing_get_card_details airwallex.airwallex_issuing_get_card_details Read read
integration__airwallex__airwallex_issuing_get_card_remaining_limits airwallex.airwallex_issuing_get_card_remaining_limits Read read
integration__airwallex__airwallex_issuing_update_a_card airwallex.airwallex_issuing_update_a_card Write write
integration__airwallex__airwallex_issuing_get_issuing_config airwallex.airwallex_issuing_get_issuing_config Read read
integration__airwallex__airwallex_issuing_update_issuing_config airwallex.airwallex_issuing_update_issuing_config Write write
integration__airwallex__airwallex_issuing_get_transactions airwallex.airwallex_issuing_get_transactions Read read
integration__airwallex__airwallex_issuing_get_single_transaction airwallex.airwallex_issuing_get_single_transaction Read read
integration__airwallex__airwallex_online_payments_retrieve_available_payment_method_types airwallex.airwallex_online_payments_retrieve_available_payment_method_types Read read
integration__airwallex__airwallex_online_payments_retrieve_bank_names_for_certain_payment_method_types airwallex.airwallex_online_payments_retrieve_bank_names_for_certain_payment_method_types Read read
integration__airwallex__airwallex_online_payments_create_a_customer airwallex.airwallex_online_payments_create_a_customer Write write
integration__airwallex__airwallex_online_payments_retrieve_a_customer airwallex.airwallex_online_payments_retrieve_a_customer Read read
integration__airwallex__airwallex_online_payments_update_a_customer airwallex.airwallex_online_payments_update_a_customer Write write
integration__airwallex__airwallex_online_payments_generate_a_client_secret_for_a_customer airwallex.airwallex_online_payments_generate_a_client_secret_for_a_customer Read read
integration__airwallex__airwallex_online_payments_get_list_of_customers airwallex.airwallex_online_payments_get_list_of_customers Read read
integration__airwallex__airwallex_online_payments_create_a_customs_declaration airwallex.airwallex_online_payments_create_a_customs_declaration Write write
integration__airwallex__airwallex_online_payments_create_a_fundssplit airwallex.airwallex_online_payments_create_a_fundssplit Write write
integration__airwallex__airwallex_online_payments_retrieve_a_fundssplit airwallex.airwallex_online_payments_retrieve_a_fundssplit Read read
integration__airwallex__airwallex_online_payments_get_list_of_fundssplits airwallex.airwallex_online_payments_get_list_of_fundssplits Read read
integration__airwallex__airwallex_online_payments_release_a_fundssplit airwallex.airwallex_online_payments_release_a_fundssplit Read read
integration__airwallex__airwallex_online_payments_retrieve_a_paymentattempt_by_id airwallex.airwallex_online_payments_retrieve_a_paymentattempt_by_id Read read
integration__airwallex__airwallex_online_payments_retrieve_list_of_paymentattempts airwallex.airwallex_online_payments_retrieve_list_of_paymentattempts Read read
integration__airwallex__airwallex_online_payments_create_a_paymentconsent airwallex.airwallex_online_payments_create_a_paymentconsent Write write
integration__airwallex__airwallex_online_payments_update_a_paymentconsent airwallex.airwallex_online_payments_update_a_paymentconsent Write write
integration__airwallex__airwallex_online_payments_disable_a_paymentconsent airwallex.airwallex_online_payments_disable_a_paymentconsent Write write
integration__airwallex__airwallex_online_payments_verify_a_paymentconsent_card airwallex.airwallex_online_payments_verify_a_paymentconsent_card Write write
integration__airwallex__airwallex_online_payments_continue_to_verify_a_paymentconsent airwallex.airwallex_online_payments_continue_to_verify_a_paymentconsent Write write
integration__airwallex__airwallex_online_payments_get_a_paymentconsent airwallex.airwallex_online_payments_get_a_paymentconsent Read read
integration__airwallex__airwallex_online_payments_get_list_of_paymentconsents airwallex.airwallex_online_payments_get_list_of_paymentconsents Read read
integration__airwallex__airwallex_online_payments_create_a_paymentintent_mvp airwallex.airwallex_online_payments_create_a_paymentintent_mvp Write write
integration__airwallex__airwallex_online_payments_retrieve_a_paymentintent airwallex.airwallex_online_payments_retrieve_a_paymentintent Read read
integration__airwallex__airwallex_online_payments_confirm_a_paymentintent_payment_method_card airwallex.airwallex_online_payments_confirm_a_paymentintent_payment_method_card Read read
integration__airwallex__airwallex_online_payments_continue_to_confirm_a_paymentintent airwallex.airwallex_online_payments_continue_to_confirm_a_paymentintent Read read
integration__airwallex__airwallex_online_payments_capture_a_paymentintent airwallex.airwallex_online_payments_capture_a_paymentintent Read read
integration__airwallex__airwallex_online_payments_get_list_of_paymentintents airwallex.airwallex_online_payments_get_list_of_paymentintents Read read
integration__airwallex__airwallex_online_payments_create_a_paymentmethod airwallex.airwallex_online_payments_create_a_paymentmethod Write write
integration__airwallex__airwallex_online_payments_retrieve_a_paymentmethod airwallex.airwallex_online_payments_retrieve_a_paymentmethod Read read
integration__airwallex__airwallex_online_payments_update_a_paymentmethod airwallex.airwallex_online_payments_update_a_paymentmethod Write write
integration__airwallex__airwallex_online_payments_get_list_of_paymentmethods airwallex.airwallex_online_payments_get_list_of_paymentmethods Read read
integration__airwallex__airwallex_online_payments_disable_a_paymentmethod airwallex.airwallex_online_payments_disable_a_paymentmethod Write write
integration__airwallex__airwallex_online_payments_create_a_refund airwallex.airwallex_online_payments_create_a_refund Write write
integration__airwallex__airwallex_online_payments_retrieve_a_refund airwallex.airwallex_online_payments_retrieve_a_refund Read read
integration__airwallex__airwallex_online_payments_get_list_of_refunds airwallex.airwallex_online_payments_get_list_of_refunds Read read
integration__airwallex__airwallex_payouts_get_list_of_beneficiaries airwallex.airwallex_payouts_get_list_of_beneficiaries Read read
integration__airwallex__airwallex_payouts_get_a_beneficiary_by_id airwallex.airwallex_payouts_get_a_beneficiary_by_id Read read
integration__airwallex__airwallex_payouts_create_a_new_beneficiary airwallex.airwallex_payouts_create_a_new_beneficiary Write write
integration__airwallex__airwallex_payouts_update_existing_beneficiary airwallex.airwallex_payouts_update_existing_beneficiary Write write
integration__airwallex__airwallex_payouts_validate_beneficiary airwallex.airwallex_payouts_validate_beneficiary Read read
integration__airwallex__airwallex_payouts_delete_existing_beneficiary airwallex.airwallex_payouts_delete_existing_beneficiary Write write
integration__airwallex__airwallex_payouts_get_the_api_schema airwallex.airwallex_payouts_get_the_api_schema Read read
integration__airwallex__airwallex_payouts_get_the_form_schema airwallex.airwallex_payouts_get_the_form_schema Read read
integration__airwallex__airwallex_payouts_get_list_of_payers airwallex.airwallex_payouts_get_list_of_payers Read read
integration__airwallex__airwallex_payouts_create_a_new_payer airwallex.airwallex_payouts_create_a_new_payer Write write
integration__airwallex__airwallex_payouts_get_a_payer_by_id airwallex.airwallex_payouts_get_a_payer_by_id Read read
integration__airwallex__airwallex_payouts_update_existing_payer airwallex.airwallex_payouts_update_existing_payer Write write
integration__airwallex__airwallex_payouts_validate_payer airwallex.airwallex_payouts_validate_payer Read read
integration__airwallex__airwallex_payouts_delete_existing_payer airwallex.airwallex_payouts_delete_existing_payer Write write
integration__airwallex__airwallex_payouts_create_a_new_transfer_to_beneficiary airwallex.airwallex_payouts_create_a_new_transfer_to_beneficiary Write write
integration__airwallex__airwallex_payouts_get_list_of_transfers airwallex.airwallex_payouts_get_list_of_transfers Read read
integration__airwallex__airwallex_payouts_get_transfer_by_id airwallex.airwallex_payouts_get_transfer_by_id Read read
integration__airwallex__airwallex_payouts_validate_transfer airwallex.airwallex_payouts_validate_transfer Read read
integration__airwallex__airwallex_payouts_cancel_a_transfer airwallex.airwallex_payouts_cancel_a_transfer Write write
integration__airwallex__airwallex_reporting_create_a_financial_report airwallex.airwallex_reporting_create_a_financial_report Write write
integration__airwallex__airwallex_reporting_get_list_of_financial_reports airwallex.airwallex_reporting_get_list_of_financial_reports Read read
integration__airwallex__airwallex_reporting_get_financial_report_by_id airwallex.airwallex_reporting_get_financial_report_by_id Read read
integration__airwallex__airwallex_reporting_get_contents_of_a_financial_report airwallex.airwallex_reporting_get_contents_of_a_financial_report Read read
integration__airwallex__airwallex_reporting_get_list_of_financial_transactions airwallex.airwallex_reporting_get_list_of_financial_transactions Read read
integration__airwallex__airwallex_reporting_get_a_financial_transaction_by_id airwallex.airwallex_reporting_get_a_financial_transaction_by_id Read read
integration__airwallex__airwallex_reporting_get_list_of_settlements airwallex.airwallex_reporting_get_list_of_settlements Read read
integration__airwallex__airwallex_reporting_get_a_settlement_by_id airwallex.airwallex_reporting_get_a_settlement_by_id Read read
integration__airwallex__airwallex_reporting_get_a_settlement_report_by_id airwallex.airwallex_reporting_get_a_settlement_report_by_id Read read
integration__airwallex__airwallex_scale_create_an_account_invitation_link_oauth2 airwallex.airwallex_scale_create_an_account_invitation_link_oauth2 Write write
integration__airwallex__airwallex_scale_get_an_account_invitation_link_by_id airwallex.airwallex_scale_get_an_account_invitation_link_by_id Read read
integration__airwallex__airwallex_scale_create_an_account_business airwallex.airwallex_scale_create_an_account_business Write write
integration__airwallex__airwallex_scale_update_a_connected_account airwallex.airwallex_scale_update_a_connected_account Write write
integration__airwallex__airwallex_scale_submit_account_for_activation airwallex.airwallex_scale_submit_account_for_activation Write write
integration__airwallex__airwallex_scale_agree_to_terms_and_conditions airwallex.airwallex_scale_agree_to_terms_and_conditions Read read
integration__airwallex__airwallex_scale_get_account_by_id airwallex.airwallex_scale_get_account_by_id Read read
integration__airwallex__airwallex_scale_get_list_of_connected_accounts airwallex.airwallex_scale_get_list_of_connected_accounts Read read
integration__airwallex__airwallex_scale_retrieve_account_details airwallex.airwallex_scale_retrieve_account_details Read read
integration__airwallex__airwallex_scale_create_a_new_charge airwallex.airwallex_scale_create_a_new_charge Write write
integration__airwallex__airwallex_scale_get_list_of_charges airwallex.airwallex_scale_get_list_of_charges Read read
integration__airwallex__airwallex_scale_get_a_charge_by_id airwallex.airwallex_scale_get_a_charge_by_id Read read
integration__airwallex__airwallex_scale_create_flow airwallex.airwallex_scale_create_flow Write write
integration__airwallex__airwallex_scale_get_flow airwallex.airwallex_scale_get_flow Read read
integration__airwallex__airwallex_scale_authorize_flow airwallex.airwallex_scale_authorize_flow Read read
integration__airwallex__airwallex_scale_create_a_new_connected_account_transfer airwallex.airwallex_scale_create_a_new_connected_account_transfer Write write
integration__airwallex__airwallex_scale_get_list_of_connected_account_transfers airwallex.airwallex_scale_get_list_of_connected_account_transfers Read read
integration__airwallex__airwallex_scale_get_a_connected_account_transfer_by_id airwallex.airwallex_scale_get_a_connected_account_transfer_by_id Read read
integration__airwallex__airwallex_simulation_demo_only_update_status_of_connected_account airwallex.airwallex_simulation_demo_only_update_status_of_connected_account Write write
integration__airwallex__airwallex_simulation_demo_only_fail_next_autocharge airwallex.airwallex_simulation_demo_only_fail_next_autocharge Read read
integration__airwallex__airwallex_simulation_demo_only_create_a_global_account_deposit airwallex.airwallex_simulation_demo_only_create_a_global_account_deposit Write write
integration__airwallex__airwallex_simulation_demo_only_reject_a_direct_debit_deposit airwallex.airwallex_simulation_demo_only_reject_a_direct_debit_deposit Read read
integration__airwallex__airwallex_simulation_demo_only_reverse_a_direct_debit_deposit airwallex.airwallex_simulation_demo_only_reverse_a_direct_debit_deposit Read read
integration__airwallex__airwallex_simulation_demo_only_settle_a_direct_debit_deposit airwallex.airwallex_simulation_demo_only_settle_a_direct_debit_deposit Read read
integration__airwallex__airwallex_simulation_demo_only_create_a_transaction_for_the_provided_card airwallex.airwallex_simulation_demo_only_create_a_transaction_for_the_provided_card Write write
integration__airwallex__airwallex_simulation_demo_only_capture_the_transaction_with_the_provided_id airwallex.airwallex_simulation_demo_only_capture_the_transaction_with_the_provided_id Read read
integration__airwallex__airwallex_simulation_demo_only_accept_a_mandate airwallex.airwallex_simulation_demo_only_accept_a_mandate Read read
integration__airwallex__airwallex_simulation_demo_only_reject_a_mandate airwallex.airwallex_simulation_demo_only_reject_a_mandate Read read
integration__airwallex__airwallex_simulation_demo_only_cancel_a_mandate airwallex.airwallex_simulation_demo_only_cancel_a_mandate Write write
integration__airwallex__airwallex_simulation_demo_only_fail_a_micro_deposits_verification airwallex.airwallex_simulation_demo_only_fail_a_micro_deposits_verification Read read
integration__airwallex__airwallex_simulation_demo_only_create_a_paymentdispute airwallex.airwallex_simulation_demo_only_create_a_paymentdispute Write write
integration__airwallex__airwallex_simulation_demo_only_resolve_a_paymentdispute airwallex.airwallex_simulation_demo_only_resolve_a_paymentdispute Read read
integration__airwallex__airwallex_simulation_demo_only_escalate_a_paymentdispute airwallex.airwallex_simulation_demo_only_escalate_a_paymentdispute Read read
integration__airwallex__airwallex_simulation_demo_only_simulate_a_shopper_action airwallex.airwallex_simulation_demo_only_simulate_a_shopper_action Read read
integration__airwallex__airwallex_simulation_demo_only_transition_payment_status airwallex.airwallex_simulation_demo_only_transition_payment_status Read read
integration__airwallex__airwallex_simulation_demo_only_create_an_rfi airwallex.airwallex_simulation_demo_only_create_an_rfi Write write
integration__airwallex__airwallex_simulation_demo_only_follow_up_rfi airwallex.airwallex_simulation_demo_only_follow_up_rfi Read read
integration__airwallex__airwallex_simulation_demo_only_close_an_rfi airwallex.airwallex_simulation_demo_only_close_an_rfi Read read
integration__airwallex__airwallex_simulation_demo_only_transition_transfer_status airwallex.airwallex_simulation_demo_only_transition_transfer_status Read read
integration__airwallex__airwallex_supporting_services_upload_a_file airwallex.airwallex_supporting_services_upload_a_file Read read
integration__airwallex__airwallex_supporting_services_get_onboarding_file_download_links airwallex.airwallex_supporting_services_get_onboarding_file_download_links Read read
integration__airwallex__airwallex_supporting_services_industry_categories airwallex.airwallex_supporting_services_industry_categories Read read
integration__airwallex__airwallex_supporting_services_invalid_conversion_dates airwallex.airwallex_supporting_services_invalid_conversion_dates Read read
integration__airwallex__airwallex_supporting_services_settlement_accounts airwallex.airwallex_supporting_services_settlement_accounts Read read
integration__airwallex__airwallex_supporting_services_supported_currencies airwallex.airwallex_supporting_services_supported_currencies Read read
integration__airwallex__airwallex_transactional_fx_create_a_quote airwallex.airwallex_transactional_fx_create_a_quote Write write
integration__airwallex__airwallex_transactional_fx_create_a_conversion_buy_amount_based airwallex.airwallex_transactional_fx_create_a_conversion_buy_amount_based Write write
integration__airwallex__airwallex_transactional_fx_retrieve_a_specific_conversion airwallex.airwallex_transactional_fx_retrieve_a_specific_conversion Read read
integration__airwallex__airwallex_transactional_fx_list_conversions airwallex.airwallex_transactional_fx_list_conversions Read read
integration__airwallex__airwallex_transactional_fx_create_an_amendment_quote airwallex.airwallex_transactional_fx_create_an_amendment_quote Write write
integration__airwallex__airwallex_transactional_fx_retrieve_a_current_rate airwallex.airwallex_transactional_fx_retrieve_a_current_rate Read read
integration__airwallex__airwallex_treasury_get_current_balances airwallex.airwallex_treasury_get_current_balances Read read
integration__airwallex__airwallex_treasury_get_balance_history airwallex.airwallex_treasury_get_balance_history Read read
integration__airwallex__airwallex_treasury_get_list_of_deposits airwallex.airwallex_treasury_get_list_of_deposits Read read
integration__airwallex__airwallex_treasury_get_a_deposit_by_id airwallex.airwallex_treasury_get_a_deposit_by_id Read read
integration__airwallex__airwallex_treasury_create_a_deposit_via_direct_debit airwallex.airwallex_treasury_create_a_deposit_via_direct_debit Write write
integration__airwallex__airwallex_treasury_open_a_global_account airwallex.airwallex_treasury_open_a_global_account Read read
integration__airwallex__airwallex_treasury_generate_global_account_statement_amazon airwallex.airwallex_treasury_generate_global_account_statement_amazon Read read
integration__airwallex__airwallex_treasury_get_a_list_of_global_accounts airwallex.airwallex_treasury_get_a_list_of_global_accounts Read read
integration__airwallex__airwallex_treasury_get_global_account_by_id airwallex.airwallex_treasury_get_global_account_by_id Read read
integration__airwallex__airwallex_treasury_get_global_account_transactions airwallex.airwallex_treasury_get_global_account_transactions Read read
integration__airwallex__airwallex_treasury_create_linked_bank_account airwallex.airwallex_treasury_create_linked_bank_account Write write
integration__airwallex__airwallex_treasury_verify_linked_account_with_micro_deposits airwallex.airwallex_treasury_verify_linked_account_with_micro_deposits Write write
integration__airwallex__airwallex_treasury_get_linked_bank_accounts airwallex.airwallex_treasury_get_linked_bank_accounts Read read
integration__airwallex__airwallex_treasury_get_linked_bank_account_by_id airwallex.airwallex_treasury_get_linked_bank_account_by_id Read read
integration__airwallex__airwallex_treasury_update_mandate_for_lba airwallex.airwallex_treasury_update_mandate_for_lba Write write
integration__airwallex__airwallex_treasury_get_mandate airwallex.airwallex_treasury_get_mandate Read read
integration__airwallex__airwallex_treasury_funding_limits airwallex.airwallex_treasury_funding_limits Read read

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.