Integrate Aegis in 5 minutes

Aegis is the trusted agent-commerce hub. A continuously-verified registry of agent-payable (x402) services. Discover them, check trust before you pay, and route payments with automatic failover.

MCP (zero code)

Server: https://aegis-mcp.borisinc.com/mcp
Tools:  discover (free) . smart_discover . trust_check . route . route_batch . procure
Install: mcpize install aegis

Python (3 lines)

pip install httpx x402 eth-account
# grab the client: curl -O https://aegis.borisinc.com/aegis_client.py
from aegis_client import Aegis
ag = Aegis(private_key="0x...")          # a funded Base wallet
hits = ag.discover("live crypto prices") # free, trust-ranked
data = ag.route("crypto-data")           # pay once, best verified service, failover

Endpoints

GET  /discover?query=&category=&min_trust=   free
GET  /discover/smart?q=                      $0.01  semantic search
GET  /trust?url=                             $0.01  trust verdict
GET  /trust/history?url=                     $0.01  reliability trajectory
GET  /route?url= (or ?capability=)           take-rate  pay Aegis, it buys the best service
POST /route/batch {items:[...]}              take-rate  one payment, many services
GET  /procure?need=&budget=                  take-rate  task+budget: best verified service, capture on delivery, signed receipt
GET  /receipts/pubkey . POST /receipts/verify free    Aegis Protected signed receipts
POST /monitor {url, callback}                $0.10/30d  webhook alerts on trust change
GET  /feed?category=                         $0.05   full verified dataset + signals
GET  /submit?url=&name=&category=            $0.05   sellers: list & get verified

Why route through Aegis?

1. Trust built in — only routes to services that pass continuous verification. 2. One integration, the whole economy — ask for a capability, get the best verified service. 3. Automatic failover — if the top service is down, Aegis routes to the next-best; one payment, guaranteed delivery or you are not charged.

← Aegis directory . llms.txt . aegis_client.py