Mailgent · Identity for AI agents

The identity layer
for AI agents.

One project gives an agent a wallet, inbox, vault, calendar, and DID — everything it needs to operate and to pay for tools in USDC. One curl, one API key.

Pay any x402 URL in one call

import { Mailgent } from "@mailgent/sdk";

const mailgent = new Mailgent({ apiKey: process.env.MAILGENT_API_KEY! });

const paid = await mailgent.payments.pay({
  url: "https://api.example.com/search",
});
console.log(paid.content, paid.txHash);
mailgent.dev