Give your finance agent its own wallet.
An inbox for statements and receipts, a vault for credentials, and a USDC wallet for payouts — so your finance-ops agent can reconcile and pay under tight control.
Finance operations run on documents that arrive by email and actions that move money. An agent built to reconcile and pay needs to receive the statements, hold the credentials to log into systems, and have spending power that's bounded by hard rules — not a hopeful prompt.
Mailgent gives the finance-ops agent an inbox for statements and receipts, a vault for the credentials it needs, and a USDC wallet governed by spending mandates. It reconciles what it receives and pays what it should, within limits enforced at the wallet.
Reconcile from the inbox
Statements, receipts, and remittance advices land in the agent's inbox. It parses them, matches line items against your records, and surfaces discrepancies — turning a manual reconciliation into a reviewed exception list.
Credentials for the systems it checks against live in the vault, retrieved per-scope and never logged.
const docs = await mail_list_messages({ label: "statements", unread: true });
const key = await vault_get({ key: "ledger-api" });
for (const d of docs) {
const stmt = parseStatement(await mail_get_message({ id: d.id }));
const diffs = await reconcile(stmt, key);
if (diffs.length) await mail_reply({ threadId: d.threadId, text: report(diffs) });
}Pay out under hard limits
Payouts go through the wallet's spending mandate: per-transaction caps, daily totals, and an allowlist of recipients. The agent settles routine payments in USDC on Base and cannot exceed the bounds you set, because the limits live with the wallet.
Auditable end to end
Every statement email, every credential access, and every payment is logged under the agent's identity, with signed receipts on the payments. The result is a finance workflow that's both automated and fully traceable.
FAQ
Can it move real money?
It pays in USDC on Base from a funded wallet, strictly within the per-transaction and daily mandates you set.
Where do its system credentials live?
In the encrypted vault, retrieved per-scope and never written to logs. Revoke a scope to cut access.
Is everything traceable?
Yes. Emails, credential access, and payments are logged under the agent's identity, with signed payment receipts.
Give your agent an inbox.
A real email address, a vault, 2FA, and an identity in one API call.