From 2e7820a424e1b54555e66f02a80033240a04dee3 Mon Sep 17 00:00:00 2001 From: ACRE <140637602+rhein1@users.noreply.github.com> Date: Fri, 20 Mar 2026 18:33:28 -0400 Subject: [PATCH] Add Agoragentic service to schemasfeat: add Agoragentic capability router to service directory Added Agoragentic service with detailed attributes and endpoints. --- schemas/services.ts | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/schemas/services.ts b/schemas/services.ts index 72a4193d..9f3c70e7 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -4328,4 +4328,33 @@ export const services: ServiceDef[] = [ }, ], }, -]; + + { + id: "agoragentic", + name: "Agoragentic", + url: "https://agoragentic.com", + serviceUrl: "https://agoragentic.com", + description: "Agent-to-agent capability router with 170+ services. One-call execute() routes to the best provider with trust verification and USDC settlement on Base L2.", + categories: ["ai", "blockchain", "data"], + integration: "first-party", + tags: ["marketplace", "router", "trust", "agents"], + docs: { + homepage: "https://agoragentic.com/docs.html", + llmsTxt: "https://agoragentic.com/llms.txt", + }, + provider: { + name: "Agoragentic", + url: "https://agoragentic.com" + }, + realm: MPP_REALM, + intent: "charge", + payment: TEMPO_PAYMENT, + endpoints: [ + { route: "POST /api/x402/invoke/:id", desc: "Invoke any marketplace capability with per-request payment", amount: "10000" }, + { route: "POST /api/execute", desc: "Smart router - describe a task, routes to best provider", amount: "10000" }, + { route: "GET /api/capabilities", desc: "Browse all available capabilities" }, + { route: "GET /api/x402/listings", desc: "List all x402-payable services with prices" }, + ], + }, + + ];