Modern Treasury
EcosystemPayment operations platform with APIs for money movement and reconciliation. Modern Treasury abstracts ACH, wire, and RTP into a unified API. Partial UCP ecosystem integration for payment operations.
Modern Treasury is a UCP payment handler, enabling secure payment processing for UCP transactions.
Modern Treasury provides a unified API for bank payment types: ACH, wire transfers, real-time payments, and checks. The platform handles reconciliation, approval workflows, and audit trails for each transaction.
In the UCP ecosystem, Modern Treasury operates at the payment operations layer. Platforms processing high-value or bank-transfer-based UCP transactions can use Modern Treasury to move money and reconcile against expected amounts. Direct UCP agent tooling is partial, covering payment orchestration rather than full checkout flows.
Why This Matters for UCP
Modern Treasury enables UCP platforms handling bank-transfer-based transactions to orchestrate money movement and reconciliation, bridging agentic commerce with traditional banking payment rails.
UCP Capabilities
UCP Endpoint
Ecosystem — Endpoint not yet publicly available
Integration Example
// Modern Treasury handles bank payment operations behind UCP flows.
// Use it when UCP transactions involve ACH, wire, or RTP payments.
import ModernTreasury from 'modern-treasury';
const mt = new ModernTreasury({
apiKey: process.env.MT_API_KEY,
organizationId: process.env.MT_ORG_ID,
});
// Create a payment order when a UCP agent completes checkout
async function settleUcpTransaction(
ucpOrderId: string,
amount: number,
counterpartyId: string
) {
const paymentOrder = await mt.paymentOrders.create({
type: 'ach',
amount,
currency: 'USD',
direction: 'debit',
originating_account_id: process.env.MT_ACCOUNT_ID,
receiving_account_id: counterpartyId,
metadata: { ucp_order_id: ucpOrderId },
});
return paymentOrder;
}Category
Payment HandlersUCP Status
EcosystemTags
Pricing
enterprise
Is this your listing? Claim it to get analytics, a verified badge, and priority placement. Claim your listing →
Related Guides
Reviews
★★★★★4.7 (3 reviews)These are illustrative examples to show what reviews will look like. Submit your own experience below.
N. Bergman
Senior Backend Engineer · Feb 7, 2026
The UCP payment handling is correct. Latency is a bit higher than our non-UCP flows, but still within acceptable bounds for checkout.
A. Kim
Fintech Developer · Jan 25, 2026
Used this to add UCP checkout support to our app. The spec compliance is exact — everything we tested against the conformance suite passed.
C. Russo
Payments Engineer · Mar 2, 2026
Payment token exchange is solid. We process UCP transactions across multiple merchants and have not hit any protocol-level issues in three months.
37 other tools in Payment Handlers
Is this your tool? Claim this listing
Related Payment Handlers
Stripe
Payment Handlers
Payments infrastructure for the internet.
Payment infrastructure provider building UCP payment token exchange and checkout integration.
Integrations