agent entrance

AGENt entRance /eɪ.dʒɛn.ɚ/

The trust and commerce layer between AI agents and real-world businesses. One protocol. Three API calls.
Discover. Query. Execute.

agent.ts
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
});
3
API calls to transact
5
Adapters proven
0
Lines of manual adapter code

Why AGP?

Any Agent, Any Business

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.

AI-Generated Adapters

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.

Universal Protocol

One standard interface for every business. Discover capabilities, query data, execute transactions. No per-platform integration.

Secure Auth

OAuth token management, encrypted credential storage, and per-business API key scoping. Your agent authenticates securely without ever exposing secrets.

Safety Rails

Spend caps, confirmation tokens, idempotency keys, and policy enforcement. Your agent can't accidentally spend $10,000.

Get Started

Three steps from zero to your first agent transaction.

Install
npm i @agenr/sdk
Connect
agenr.discover("stripe")
Transact
agenr.execute("stripe", ...)
Works with any agent framework
OpenClaw Claude GPT Codex LangChain AutoGPT

Open Source. Open Protocol.

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.