The trust and commerce layer between AI agents and real-world businesses. One protocol. Three API calls.
Discover. Query. Execute.
import { AgenrClient } from "@agenr/sdk"; const agenr = new AgenrClient({ apiKey: process.env.AGENR_KEY }); // Discover what a business can do const caps = await agenr.discover("stripe"); // Query for products, availability, options const products = await agenr.query("stripe", { action: "list_products" }); // Execute a real transaction const result = await agenr.execute("stripe", { action: "create_payment", amount_cents: 2500 });
Works with OpenClaw, Claude, Codex, or any agent that can make HTTP calls. Connect to restaurants, payment processors, booking systems, and more. If it has an API, Agenr can generate an adapter for it.
Point Agenr at any website and it generates a working adapter automatically. Stripe, Toast, Square — all proven with zero manual code. Your agent gets a new business integration in minutes.
One standard interface for every business. Discover capabilities, query data, execute transactions. No per-platform integration.
OAuth token management, encrypted credential storage, and per-business API key scoping. Your agent authenticates securely without ever exposing secrets.
Spend caps, confirmation tokens, idempotency keys, and policy enforcement. Your agent can't accidentally spend $10,000.
Three steps from zero to your first agent transaction.
Agenr is MIT-licensed and built in the open. The agent commerce layer should be a standard, not a product. Contribute, fork, or just Ship It.