Building the Agentic Treasury

A Technical Field Guide

How to build Maria, Alejandro, and Sam (the treasury AI agents from the companion video) and the exact technology stack behind every layer.

Watch first: Lisa and her AI Agents

Meet Lisa, a corporate treasurer, and the three AI agents she works alongside. Then read on for how the system is actually built.

Companion video: Lisa and her AI Agents, open on YouTube if the inline player doesn't load.

What is an agentic treasury?

An agentic treasury is a corporate treasury function in which specialized AI agents continuously analyze cash, liquidity and payment data and produce grounded, evidence-backed recommendations, while a human treasurer keeps decision authority, every recommendation is filtered through policy enforced as code, and every action is written to an immutable audit trail.

It is not an autonomous treasury. The agents propose, orchestration policy-checks the options, a human authorizes, and only then does execution happen.

In this guide the agents are Maria (forecasting and risk), Alejandro (liquidity and investment) and Sam (transaction and operations), coordinated by an orchestration layer that routes every request, enforces policy as code, and logs it. The governing sequence is governance first, intelligence second, automation last.

00The build philosophy

The companion video shows Lisa asking questions and three agents (Maria, Alejandro, and Sam) answering in seconds. It looks like a conversation. It is not. It is infrastructure.

This guide deconstructs that infrastructure so you can build an agentic treasury yourself. Before the components, one principle governs every decision that follows:

Core principle

Governance-first, intelligence-enabled. The human stays accountable, orchestration controls decisions, agents provide grounded recommendations, data ensures accuracy, and execution stays policy-bound.

This is not a chatbot bolted onto a treasury management system. It is a structured, policy-governed architecture that embeds intelligence into institutional infrastructure. Remove orchestration and governance collapses. Remove data grounding and recommendations become unreliable. Remove human authority and institutional accountability disappears. Each layer depends on the others, and the system is deliberately designed to fail safely: when uncertainty arises, control escalates to a human.

01The five-layer architecture

Every request in the system flows through five layers. Each has a distinct responsibility, and together they form a treasury operating model that is both intelligent and institutionally controlled.

Technical Blueprint: The Agentic Treasury Stack HUMAN AUTHORITY LAYER Lisa: Corporate Treasurer · Decision-maker · Approval authority Treasury Platform UI: Dashboards · Natural language · Authorization controls ORCHESTRATION LAYER: Institutional Control Plane Workflow engine · Agent routing · Policy enforcement Approval checkpoints · Audit logging · Cross-agent coordination AGENT INTELLIGENCE LAYER Maria: Forecasting & Risk · Alejandro: Liquidity Optimization Sam: Transaction Monitoring Powered by: Agentic RAG · LLMs (GPT, Claude, Gemini) · Structured decision logic DATA & KNOWLEDGE LAYER Internal: ERP (SAP, Oracle) · TMS (Kyriba, FIS, Reval) Warehouse (Snowflake, BigQuery) · Policies External: Market Data APIs · Payment Networks (SWIFT, FedNow, SEPA) Compliance & Sanctions DBs EXECUTION & GOVERNANCE LAYER Payment gateways · Bank APIs · Credit facilities Regulatory reporting · Audit trail & explainability console All high-value actions require human authorization.
The Agentic Treasury stack: five layers, one governed operating model.
LayerWhat it doesWhy it matters
1. Human AuthorityThe treasurer (Lisa) remains decision-maker and approval authority. Natural-language interface, dashboards, authorization controls.AI recommendations are presented here, never executed autonomously.
2. Orchestration
(control plane)
Routes requests, enforces policy as code, coordinates multi-agent workflows, inserts approval checkpoints, logs everything.Without it, agents operate in isolation. With it, they operate as a controlled system.
3. Agent IntelligenceMaria, Alejandro, and Sam, domain-specific agents, each with a defined scope, powered by Agentic RAG + LLMs + structured decision logic.Specialized reasoning within policy boundaries set by orchestration.
4. Data & KnowledgeIntegrates internal systems (ERP, TMS, warehouse, policies) and external sources (market data, payment networks, compliance DBs).Retrieved on demand, versioned for auditability, validated before use.
5. Execution & GovernanceOnce a human authorizes, executes via payment gateways, bank APIs, credit facilities; regulatory reporting is automatic.Every action generates an immutable, cryptographically signed audit trail.

02The orchestration layer: the institutional control plane

In the video Lisa appears to talk directly to the agents. In reality, she never does. Every request flows through an orchestration layer that is invisible to the user but essential to the system's integrity. This is the operating system of the agentic treasury. Build it first.

Orchestration Workflow Lisa Request Treasury Platform UI ORCHESTRATION CONTROL PLANE Intent classification · Agent routing · Policy enforcement Approval checks · Workflow coordination · Audit logging AI Agents: Maria | Alejandro | Sam Data Retrieval + Execution Systems
Every request is routed, policy-checked, and logged before an agent ever responds.

The five core functions

  • Intent routing: decides which agent(s) respond and what data is required. "Show me next quarter's forecast" → Maria; "How do we cover this shortfall?" → Alejandro; "Has the Brazil payment arrived?" → Sam; "What's our liquidity across all entities?" → Maria + Sam, coordinated.
  • Workflow coordination: sequences agent interactions, combines outputs, resolves conflicts, maintains context across multi-turn workflows.
  • Policy enforcement: applies liquidity buffers, exposure limits, approval hierarchies, compliance and operational controls as code. Non-compliant options are filtered out before Lisa ever sees them.
  • Human-in-the-loop control: inserts mandatory approvals at high-value payments, credit usage, risk escalations, policy overrides, and new counterparties.
  • Audit & explainability: logs inputs, data sources, agents invoked, policies applied, human approvals, and outcomes. Immutable and cryptographically signed.

Implementation stack: orchestration layer

FunctionPurposeExample technologiesImplementation notes
Workflow EngineCoordinate multi-step processesTemporal, Camunda, AWS Step FunctionsStateless services; supports retries and rollbacks
Agent RouterDirect requests to correct agent(s)LangGraph, LangChain, custom orchestratorDriven by intent classification; supports multi-agent coordination
Policy EngineEnforce treasury rulesOpen Policy Agent, custom rules engineExternalized policy configs; version-controlled
Approval SystemHuman authorization checkpointsIAM + Treasury UI integrationRole-based access; mobile-enabled for urgent approvals
Audit LoggingFull traceabilitySplunk, Datadog, ELK stack, CloudWatchImmutable logs; WORM storage recommended
Critical implementation principle: the orchestration layer must be production-ready before the first agent goes live. Retrofitting governance after deployment creates technical debt and operational risk.

03Agentic RAG: how intelligence is grounded

Large language models reason well, but on their own they carry two risks that are unacceptable in institutional treasury: they rely on training memory that may be stale, and they can produce confident-sounding answers with no verifiable grounding. The agents solve this with Agentic Retrieval-Augmented Generation.

Traditional RAG retrieves once and generates. Agentic RAG is active: the agent decides what information is required, which sources to query and in what order, whether it has enough context, and how to reconcile conflicting data, validating everything against policy before responding.

Agentic RAG Architecture (Maria) Lisa Query Orchestration Layer Agentic RAG Controller LLM Engine (GPT / Claude) Vector Database (Semantic Search) Policy Context (Rules & Limits) Live Data APIs (ERP / TMS / Market) Retrieval & Reasoning Loop Validation & Grounding Check Maria's Response
Agentic RAG: retrieval is dynamic, contextual, and policy-aware, grounded, never guessed.

The difference in practice

Generic LLMAgentic RAG (Maria)
"Based on typical patterns, you might see a shortfall around mid-quarter."
Plausible.
"Week 7 shows a projected $4.2M shortfall based on $8.5M payables due (ERP-2024-02-14), $3.1M expected inflows (TMS-Entity-BR), and minimum buffer requirement of $2M (Policy-LATAM-001)."
Verifiable.

Implementation stack: Agentic RAG components

ComponentFunctionExample technologiesImplementation notes
Foundation LLMReasoning & synthesisGPT-4, Claude Sonnet, GeminiMultiple models may coexist; selection based on task
Vector DatabaseSemantic retrievalPinecone, Weaviate, FAISS, ChromaStores embedded enterprise knowledge; updated nightly or real-time
Retrieval EngineData selection logicLangChain, LlamaIndex, custom retrieversMust support policy-aware filtering and multi-source federation
Data ConnectorsSystem integrationREST APIs, gRPC, ETL pipelinesReal-time where possible; cached with TTL for performance
Policy Context EngineGovernance constraintsOpen Policy Agent, custom rulesEnforces treasury rules during retrieval and reasoning
Validation LayerGrounding verificationCustom logic, fact-checking modulesPrevents hallucinations; flags low-confidence responses

Data sources the agents ground against

Internal enterprise data

ERP (SAP, Oracle) · TMS (Kyriba, FIS, Reval) · Data warehouse (Snowflake, BigQuery) · Document repositories (policies, approval matrices) · Identity & access systems.

External data

Market data (Bloomberg, Refinitiv) · Payment networks (SWIFT, FedNow) · Regulatory & sanctions databases · Credit rating agencies · Economic indicators.

The LLM never guesses. It reasons over retrieved evidence. Every statement traces back to a specific data source with a timestamp.

04Building Maria: Forecasting & Risk

Maria generates predictive cash-flow models, runs scenario simulations, and identifies liquidity gaps weeks in advance. She is the Agentic RAG pattern in action. When Lisa asks "show me our projected cash flow for the next 90 days," Maria does not answer from memory. She executes a grounded workflow:

  1. Intent classification: orchestration identifies a forecasting request and routes to Maria.
  2. Data planning: Maria determines required sources: ERP (payables/receivables), TMS (cash positions), warehouse (historical patterns), market feeds (FX/rates), policy repository (buffer requirements).
  3. Retrieval orchestration: pulls upcoming obligations, current balances, timing patterns, FX forecasts, and applicable policies.
  4. Context assembly: retrieved data is normalized for cross-system consistency and time-aligned to the 90-day horizon.
  5. LLM reasoning: projects daily cash positions, identifies inflows/outflows, calculates net positions by week, accounts for currency translation.
  6. Risk evaluation: scans for projected shortfalls, policy-buffer violations, concentration risk, and timing mismatches.
  7. Response generation: delivers a structured forecast with visual projection, narrative drivers, flagged risk periods, and recommended actions.
Cross-agent trigger

If Maria identifies a significant liquidity gap, orchestration automatically notifies Alejandro to begin evaluating funding options, before Lisa even asks.

Deploy Maria first: low operational risk, high strategic value, immediate visibility. She proves the governance model on the lowest-risk use case.

05Building Alejandro: Liquidity Optimization

Maria understands what might happen; Alejandro determines what to do about it. When a shortfall is detected, orchestration activates Alejandro to evaluate funding options within institutional constraints. He doesn't return a single answer. He returns an optimized decision framework.

Liquidity Optimization Architecture (Alejandro) Maria Forecast Output Orchestration Layer Alejandro Agent Investment Data Credit Lines Data Supplier Terms Intercompany Balances Scenario Modeling Cost / Risk / Timing Analysis Ranking & Recommendation Lisa Approval Execution Layer
Alejandro simulates multiple funding strategies in parallel, then filters through policy before ranking.

How Alejandro thinks: a multi-step optimization workflow

  1. Context intake: forecasted shortfall (amount, timing, duration), root cause, risk indicators, current positioning, strategic context.
  2. Data retrieval: investment accounts, cash pools, credit facilities, intercompany balances, supplier terms; plus external rate curves, FX projections, funding-market conditions.
  3. Scenario modeling: simulates funding strategies in parallel (reallocate idle cash, draw a revolver, delay payments within policy, intercompany transfer, liquidate short-term investments), each with quantified cost/liquidity/risk trade-offs.
  4. Policy filtering: applies minimum buffers, DPO limits, credit-usage thresholds, exposure and counterparty limits. Non-compliant options are removed or flagged for exception approval.
  5. Recommendation generation: returns only policy-compliant strategies, ranked by a composite score weighing cost, risk, and strategic alignment, with rationale and an alternative.

Implementation stack: Alejandro's workflow

StageFunctionExample technologiesImplementation notes
Data AggregationConsolidate liquidity dataREST APIs, GraphQL, ETL pipelinesReal-time preferred; cached with 5-min TTL
Optimization EngineEvaluate scenariosPython (SciPy, PuLP), PyTorch, AWS SageMakerCombines ML forecasting + rules-based constraints
Simulation LayerCost/risk comparisonMonte Carlo, deterministic models, sensitivity analysisExplainable outputs required; no black-box optimization
Policy EngineGovernance filteringOpen Policy Agent, custom rules engineRemoves unsafe options; logs why options were filtered
Recommendation GeneratorHuman-readable outputLLM reasoning layer (GPT-4, Claude)Must include rationale, trade-offs, confidence levels
Execution InterfaceAuthorization & actionTreasury platform UI, bank APIsApproval workflow with explainability context

Add Alejandro only after forecasting is trusted. Optimization without governance creates risk. It works only when policy is enforced automatically, recommendations stay transparent, and humans authorize execution.

06Building Sam: Real-Time Transaction Intelligence

Maria forecasts risk. Alejandro optimizes liquidity. Sam ensures execution happens safely. He is the operational intelligence layer connecting treasury decisions to real-time payment reality, answering "Has the payment arrived? Can we proceed?" in seconds instead of the 30–60 minutes of manual portal-checking it used to take.

Transaction Intelligence Architecture (Sam) Incoming Payment Event Payment Networks SWIFT gpi · FedNow · PIX · SEPA · ACH · Bank APIs Event Stream Processor Sam Agent Settlement Status Internal Ledger Check ETA Tracking Engine Exception Detection Event Monitoring & Reconciliation Notification to Lisa Orchestration Integration Trigger Alejandro (if needed) Authorization Workflow
Sam runs on event-driven architecture, reacting to settlement events, not polling for them.

How Sam works

  • Real-time status retrieval: queries bank APIs, SWIFT gpi Tracker, instant-payment rails (FedNow, PIX, SEPA Instant), ACH networks, and internal ledgers simultaneously.
  • Reconciliation intelligence: compares expected flows (from TMS) against actual settlement data; catches duplicate payments, missing confirmations, delays, and exceptions.
  • Event monitoring: event-driven, not batch: status changes (PAYMENT_INITIATED → INTERMEDIARY_CLEARED → SETTLEMENT_PENDING → PAYMENT_SETTLED) trigger instant notifications.
  • Coordination with other agents, if a payment is delayed, Sam alerts orchestration, which automatically re-engages Alejandro to model contingency options; Lisa receives one unified update, not fragmented alerts.
  • Human confirmation: once funds settle, Sam confirms with full context; execution proceeds only after Lisa authorizes.

Implementation stack: Sam's technology components

CapabilityFunctionExample technologiesImplementation notes
Payment TrackingReal-time status monitoringSWIFT gpi, FedNow APIs, bank partner APIsEvent-driven updates; webhooks preferred
Event StreamingInstant state changesKafka, RabbitMQ, AWS EventBridge, Azure Event GridLow-latency; sub-second processing
Reconciliation EngineExpected vs actual comparisonCustom ledger logic, matching algorithmsCritical for accuracy; must handle partial settlements
ETA PredictionSettlement timing forecastsML models on historical payment dataImproves as more data accumulates
Exception DetectionAnomaly identificationRule-based + ML anomaly detectionFlags unusual delays, amounts, or routing
Notification ServiceUser alerts & updatesWebhooks, push notifications, Treasury UIContext-aware; priority routing for urgent items
Authorization FlowHuman control gateIAM + Treasury Platform UIRole-based approvals; mobile-enabled

Add Sam after governance has matured, transaction intelligence introduces the most live integrations and benefits from a proven control plane.

07Bank connectivity: what banks provide & how to connect (API + MCP)

The agents are only as good as their connection to the banks. Maria's forecasts, Alejandro's funding options, and Sam's settlement checks all depend on live data pulled from, and instructions pushed to, the institution's banking partners. This section makes explicit what banks expose and how the platform connects to it: through bank APIs, established treasury channels, and, increasingly, MCP servers that make those capabilities callable by agents under governance.

What banks provide

Banks don't expose "an API". They expose a set of distinct capabilities, most standardized on ISO 20022 message types. These are the ones that matter for an agentic treasury:

CapabilityWhat it deliversStandard / formatConsumed by
Prior-day reportingEnd-of-day statements, posted transactionsMT940 · camt.053 · BAI2Data layer → Maria, Sam
Intraday balancesReal-time positions and intraday movementsMT942 · camt.052Maria (forecasting), Sam (reconciliation)
Payment initiationInstruct credit transfers & disbursementsISO 20022 pain.001 (API or file)Execution layer (behind approval gate)
Payment status & adviceAccepted / rejected / settled; debit & credit notificationspain.002 · camt.054Sam (transaction intelligence)
Cross-border trackingEnd-to-end wire status, including intermediary banksSWIFT gpi TrackerSam
Instant railsReal-time settlement + confirmationFedNow · RTP · SEPA Instant · PIXSam, Execution layer
Account / payee validationVerify account & counterparty before payingConfirmation of Payee, validation APIsAlejandro / Execution pre-checks
FX & ratesQuotes and execution for cross-currencyBank FX APIsAlejandro

How the connection is established

The same capability can arrive over different channels. Most institutions use more than one: real-time APIs for status and instant payments, host-to-host or a TMS for bulk statements and batch disbursement.

MethodHow it worksBest forNotes
Bank / Open Banking REST APIsOAuth2 + mTLS, JSON payloads, webhooks for status pushReal-time balances, payment status, instant railsPer-bank developer portals; PSD2 Open Banking in EU/UK
Host-to-host (H2H)Scheduled secure file exchange (SFTP); EBICS in EuropeBulk payments and statements at scaleISO 20022 / BAI2 batches: robust but batch-oriented
SWIFT / SWIFT gpiMessaging network for MT/MX; gpi for trackingCross-border, multi-bank corporatesVia SWIFT Alliance or a service bureau
TMS / ERP bank connectorsPre-built connectivity maintained by the vendorFast multi-bank coverage without per-bank buildsKyriba, FIS, Reval act as an aggregation layer
Multi-bank aggregation APIsOne normalized API across many banksReducing per-bank integration effortThird-party normalization of formats

Where MCP fits: the agent-native layer

MCP does not replace any of the above. Under the hood the connection is still a bank REST API, SWIFT, or a TMS connector. What an MCP server does is expose those capabilities to agents as typed, governed tools. Instead of Sam holding raw bank credentials and hand-rolling HTTP calls, the platform runs an MCP server that wraps the bank/SWIFT/TMS endpoints as named tools: get_balances, get_payment_status, initiate_payment, each with a defined schema, scoped authentication, and a full audit record of every call.

This maps cleanly onto the architecture already in this guide: the MCP layer sits between the Agent Intelligence layer and the bank/data systems, and every tool call flows through the same orchestration, policy, and audit controls as everything else.

The critical distinction: read vs. write

Read-only tools (balances, transaction reporting, payment status) can be called by agents within policy. Write / execute tools (initiate payment, draw a facility) are gated behind the human approval gate: the agent proposes, orchestration policy-checks, a human authorizes, and only then does the execute tool fire.

Example MCP toolTypeUnderlying channelGovernance
get_balancesReadcamt.052 API / TMSPolicy-scoped; agent-callable
get_payment_statusReadSWIFT gpi / bank APIAgent-callable
reconcile_ledgerReadBank reporting + internal ledgerAgent-callable
initiate_paymentWritepain.001 API / railHuman approval required
draw_credit_facilityWriteBank facility APIApproval + CFO threshold

Whether you connect via direct bank APIs, a TMS, or an MCP server, the governance rule is identical: agents read freely within policy; agents never execute a payment without a human authorizing it.

08Human-in-the-loop & governance

The agents produce insights, recommendations, and operational updates. Yet one principle never changes: they never execute decisions independently. AI accelerates analysis; only humans carry accountability. Every high-impact action requires Lisa's approval. This is not a limitation, it is the foundation of institutional trust.

Governance Architecture (Human-in-the-Loop) AI Recommendation Orchestration Layer Policy Engine Checks Thresholds / Limits / Rules HUMAN APPROVAL GATE Lisa Reviews Decision Approval / Reject / Modify Execution Layer Payments / Funding Actions
Policy is machine-enforced before a human ever sees a recommendation; the approval gate is mandatory.

Where human approval appears

Liquidity adjustments, risk escalations, and high-value payments each trigger an authorization gate. When Alejandro recommends executing a $5M supplier payment that exceeds the treasurer's limit, orchestration routes it for CFO approval with full context and explainability attached, before execution proceeds.

Implementation stack: human governance controls

Control mechanismPurposeExample technologiesImplementation notes
Policy EngineAutomatic rule enforcementOpen Policy AgentExternalized policy configs
Role-Based AccessApproval hierarchyIAM systems (Azure AD, Okta)Treasury segregation of duties
Explainability LayerDecision transparencyLLM reasoning logsRequired before approval
Audit LoggingRegulatory complianceSplunk, ELK, DatadogImmutable storage preferred
Workflow ApprovalHuman checkpointTreasury platform UIMust be friction-light
Key principle

Human-in-the-loop is not about slowing AI down. It is about ensuring intelligence operates within institutional accountability. AI accelerates thinking; humans authorize action.

09The explainability console

In institutional finance, a recommendation is not enough. Leaders must be able to answer: why was this recommendation made? what data was used? which assumptions applied? what alternatives were considered? which policies influenced the outcome? Without explainability, AI becomes a black box, and in regulated environments, black boxes fail governance. The explainability console is not a separate agent; it is a transparency layer integrated into orchestration.

For every recommendation, it surfaces data traceability (systems accessed, timestamps), a reasoning summary (why this option, key trade-offs), policy context (rules applied, constraints that removed alternatives), scenario comparison (paths considered), and approval history (decisions, overrides, timestamped authorizations).

Implementation stack: explainability components

CapabilityFunctionExample technologiesImplementation notes
Reasoning LogsCapture model rationaleStructured LLM loggingStore prompts + outputs
Data Trace EngineShow data lineageMetadata tracking systemsMust include timestamps
Policy TransparencyDisplay applied rulesPolicy engine integrationHuman-readable output required
Scenario ViewerCompare optionsSimulation logsEssential for governance
Audit InterfaceReview approvalsTreasury UI dashboardRole-based visibility

Lisa is not asked to trust the system blindly. She is empowered to understand it.

10End-to-end operational flow

Assembled, the pieces operate as a continuous treasury workflow that runs in the background of Lisa's day. The goal is not automation of tasks. It is orchestration of intelligence.

End-to-End Operational Blueprint Lisa (Human Treasurer) Treasury Platform Interface ORCHESTRATION CONTROL PLANE Intent Routing · Workflow Coordination Policy Enforcement · Audit Tracking AI AGENT COLLABORATION Maria → Alejandro → Sam Data Retrieval & Reasoning Agentic RAG + LLM Explainability Console Human Approval Gate Execution & Compliance Systems
Human intent in, governed execution out, with every step logged and explainable.
Operational phasePrimary actorSystem responsibilityControl mechanism
Intent captureLisaDefine business needHuman authority
Routing & governanceOrchestrationCoordinate agentsPolicy enforcement
ForecastingMariaPredict liquidity riskGrounded data retrieval
OptimizationAlejandroEvaluate funding strategiesSimulation + policy filter
Transaction monitoringSamValidate settlement realityReal-time data tracking
Decision approvalLisaAuthorize actionHuman-in-the-loop
ExecutionPlatformProcess transactionGovernance + audit

11Deployment roadmap

The architecture is not deployed all at once. Successful institutions implement incrementally, prioritizing governance and operational stability over automation speed. The goal is not to "install AI". It is to evolve treasury into an intelligent operating model.

Deployment Roadmap 1 Phase 1 Orchestration & Governance Risk: Low 2 Phase 2 Data Integration Risk: Medium 3 Phase 3 Forecasting Agent (Maria) Risk: Low 4 Phase 4 Liquidity Optimization (Alejandro) Risk: Medium 5 Phase 5 Transaction Intelligence (Sam) Risk: Medium 6 Phase 6 Fully Orchestrated Agentic Treasury Risk: Controlled Governance first. Intelligence second. Automation last.
Six phases. Governance first, intelligence second, automation last.
PhaseFocusPrimary technology areaRisk
1Governance foundation: establish the control planeOrchestration + IAMLow
2Data connectivity: connect enterprise dataAPIs + Data PlatformMedium
3Forecasting intelligence: deploy MariaRAG + LLMLow
4Liquidity optimization: add AlejandroSimulation modelsMedium
5Transaction monitoring: add SamEvent-driven systemsMedium
6Full orchestration: agents collaborate; Lisa retains authorityIntegrated AI ecosystemControlled
What institutions learn

Governance first. Intelligence second. Automation last. Deploying AI before governance creates risk. Deploying governance first creates trust. The sequence matters.

Frequently asked questions

What is an agentic treasury?

An agentic treasury is a treasury function in which specialized AI agents analyze cash, liquidity and payment data and produce grounded recommendations, while a human treasurer retains decision authority and every action is policy-checked and logged to an immutable audit trail.

How do you build an agentic treasury?

In six phases, governance first: build the orchestration and governance control plane, connect enterprise and market data, deploy the forecasting agent (Maria), add liquidity optimization (Alejandro), add transaction intelligence (Sam), then run the agents as a coordinated system. Governance first, intelligence second, automation last.

What technology stack does an agentic treasury use?

Workflow engines such as Temporal, Camunda or AWS Step Functions; agent routing with LangGraph or LangChain; policy enforcement with Open Policy Agent; reasoning with GPT-4, Claude or Gemini grounded by vector databases such as Pinecone, Weaviate, FAISS or Chroma; enterprise data from ERP, TMS and warehouse systems; event streaming with Kafka or EventBridge; and audit logging with Splunk, Datadog or the ELK stack.

Is an agentic treasury autonomous?

No. Agents read data freely within policy, but writes and payments are gated: the agent proposes, orchestration policy-checks, a human authorizes, and only then does execution happen.

How do AI treasury agents connect to banks?

Through the capabilities banks already expose: ISO 20022 reporting (camt.052, camt.053), payment initiation (pain.001), status and advice (pain.002, camt.054), SWIFT gpi tracking, and instant rails such as FedNow, RTP, SEPA Instant and PIX, delivered over bank or Open Banking REST APIs, host-to-host and EBICS, SWIFT, or TMS connectors. An MCP server can expose these as typed, governed tools, with read-only tools callable by agents and write tools behind human approval.