Trust-gated x402 buyer client — pay for machine-economy APIs safely (pre-payment trust gate, local spend policy, receipts ledger). Powered by Aegis (aegis.borisinc.com).
Project description
aegis-buy
The trust layer for agent spending. Wallets answer "can my agent pay?" — aegis-buy answers "should it pay, and did it get what it paid for?"
Before your agent spends a cent: a trust gate backed by real delivery verification (Aegis actually buys from sellers with real USDC to prove they deliver — the only x402 index that does), a local spend policy (per-call/daily caps, tier floors, allow/deny lists), and an Ed25519-signed receipt for every purchase. Procurement mode is capture-on-delivery: state a need and a budget, and you are never charged for non-delivery.
Works with any funded Base wallet key — including one from Coinbase Agentic Wallets — on top of your wallet, not instead of it.
probe (free) -> parse price -> Aegis trust gate -> local spend policy -> pay -> receipt
Every step before "pay" is free and local. Nothing settles unless the service passes the trust gate and your policy caps.
Why not just a wallet?
Agent wallets (Coinbase Agentic Wallets, AgentCash, Bedrock AgentCore) give your
agent the ability to pay and cap how much. None of them answer whether the
seller on the other side is real: in the x402 ecosystem roughly half of listed
endpoints are unreachable at any given time, and "challenge-honest,
delivery-broken" sellers settle your payment and 404 the paid retry. aegis-buy
gates on the only signal that catches that — verified paid deliveries — and its
trust verdicts conform to the x402 trust-provider extension wire format
(x402-trust-evaluation-v0.1), so the same data can gate settlements
server-side as the extension lands.
Install
pip install aegis-buy # library
pip install 'aegis-buy[mcp]' # + MCP server (aegis-buy-mcp)
Quickstart
from aegis_buy import BuyClient
client = BuyClient() # key from AEGIS_BUY_KEY env
r = client.get("https://api.example.com/price?symbol=ETH")
print(r["ok"], r["price_usd"], r["data"])
# Don't know a provider? Let the hub find a trusted one within budget:
r = client.procure("live ETH price", budget=0.01)
# Test everything without spending a cent:
client = BuyClient(dry_run=True)
Environment variables
| Var | Meaning | Default |
|---|---|---|
AEGIS_BUY_KEY |
EVM private key of the buyer wallet (funds USDC on Base) | — |
AEGIS_BUY_POLICY |
Path to spend policy JSON | ~/.aegis-buy/policy.json |
AEGIS_BUY_LEDGER |
Path to sqlite receipts ledger | ~/.aegis-buy/ledger.db |
AEGIS_HUB |
Aegis hub base URL | https://aegis.borisinc.com |
AEGIS_BUY_DRY_RUN |
1 = MCP server never actually pays |
off |
Spend policy (~/.aegis-buy/policy.json)
{
"max_per_call_usd": 0.05,
"max_per_day_usd": 1.00,
"max_total_usd": 10.00,
"min_tier": "provisional",
"allow_domains": [],
"deny_domains": ["sketchy.example"],
"trust_mode": "basic"
}
max_per_call_usd/max_per_day_usd/max_total_usd— hard USD caps. Day and total spend are computed from the local ledger.min_tier— minimum Aegis trust tier:unverified<provisional<trusted. Services flagged by Aegis are always blocked.allow_domains/deny_domains— domain allow/deny lists (subdomains match).trust_mode—basic(free Aegis signals),strict(paid $0.002 verification-backed trust check per service, itself policy-capped), oroff.
Missing file = safe defaults (5¢/call, $1/day, provisional+, basic gate).
MCP server
Give Claude Desktop (or any MCP client) a safe x402 wallet:
{
"mcpServers": {
"aegis-buy": {
"command": "aegis-buy-mcp",
"env": {
"AEGIS_BUY_KEY": "0xYOUR_BUYER_WALLET_PRIVATE_KEY",
"AEGIS_BUY_POLICY": "~/.aegis-buy/policy.json"
}
}
}
}
Tools: buy_get(url, params_json) · procure(need, budget) · trust_gate(url) · spend_stats().
Safety model
- Local spend policy — per-call, per-day, and lifetime USD caps enforced before any payment; domain allow/deny lists. The wallet's downside is bounded by config.
- Pre-payment trust gate — services are checked against Aegis's continuously
verified registry before money moves. Unknown services default to
unverified; flagged services are always blocked. - Receipts ledger — every attempt (paid, blocked, failed, dry-run) lands in a local sqlite ledger; caps are computed from it, so they survive restarts.
- No blind buys — if the price can't be parsed from the 402 challenge, the purchase is refused.
- Delivery protection via Aegis — routes purchased through the hub use auth-then-capture: your payment only settles after the upstream actually delivers, so you are never charged for non-delivery.
Use a dedicated buyer wallet funded with only what you're willing to spend — defense in depth on top of the policy caps.
Links
- Hub: https://aegis.borisinc.com — free discovery:
GET /discover?query=... - x402 protocol: HTTP 402 + USDC on Base (
eip155:8453)
MIT license.
LangChain
from aegis_buy.langchain_adapter import get_tools
tools = get_tools() # buy_get, procure, trust_gate, spend_stats
Agent framework tools (LangChain / CrewAI)
Give any agent safe, spend-capped access to the x402 machine economy:
pip install aegis-buy[langchain] # or aegis-buy[crewai]
export AEGIS_BUYER_KEY=0x... # funded Base-USDC wallet (optional — free tools work without)
# LangChain
from aegis_buy.frameworks.langchain_tools import get_aegis_tools
tools = get_aegis_tools() # aegis_discover (free), aegis_trust_check, aegis_paid_get, aegis_procure
# CrewAI
from aegis_buy.frameworks.crewai_tools import get_aegis_tools
Every paid action is bounded by a local SpendPolicy — default $0.05/call, $1.00/day,
provisional-or-better sellers only (AEGIS_MAX_PER_CALL_USD, AEGIS_MAX_PER_DAY_USD,
AEGIS_MIN_TIER) — with a pre-payment trust gate against the Aegis registry.
No key configured: paid tools return an instructive message instead of spending.
The aegis_buy.services layer (real-world purchases via Merchant-of-Record providers,
take-rate settlement) also ships in this package from 0.2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aegis_buy-0.2.0.tar.gz.
File metadata
- Download URL: aegis_buy-0.2.0.tar.gz
- Upload date:
- Size: 27.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42f29aa89f61a85c597b2ccc6af165ee8e800f8b4b8d8a1b74d40ab28d6b56cf
|
|
| MD5 |
80c0d93dff4193124aa75290e2bdb05a
|
|
| BLAKE2b-256 |
b76002d65dd167a0f4aec71414a7d788b61020fe688223cd1ddb71813c898daa
|
File details
Details for the file aegis_buy-0.2.0-py3-none-any.whl.
File metadata
- Download URL: aegis_buy-0.2.0-py3-none-any.whl
- Upload date:
- Size: 26.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7f4490b3dba9d5ef85e3f7a7b7d4e9c845b7ba7a07cdd7f6e9a6bb94bb2c38a
|
|
| MD5 |
630d96068e1eeb88b44b0accf8958743
|
|
| BLAKE2b-256 |
0ca6d666c53599d7d066a36e24250f3a293d187c4ee97539a1d1b5efbb3723e3
|