From 05635b3f1b31d2846a43dd3f210814ec838d6510 Mon Sep 17 00:00:00 2001 From: fredxyt Date: Fri, 20 Mar 2026 02:10:13 -0700 Subject: [PATCH] =?UTF-8?q?Add=20mpps.io=20=E2=80=94=20attestation=20for?= =?UTF-8?q?=20agent=20commerce?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schemas/services.ts | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/schemas/services.ts b/schemas/services.ts index 72a4193d..969ad1cc 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -4328,4 +4328,33 @@ export const services: ServiceDef[] = [ }, ], }, + + // ── mpps.io ───────────────────────────────────────────────────── + { + id: "mpps", + name: "mpps.io", + url: "https://api.mpps.io", + serviceUrl: "https://api.mpps.io", + description: "Cryptographic attestation for agent commerce. Proof of delivery for every MPP transaction.", + categories: ["data"], + integration: "third-party", + tags: ["attestation", "proof", "trust", "notarize", "certificate", "audit", "receipt", "delivery"], + status: "active", + docs: { + homepage: "https://mpps.io", + llmsTxt: "https://api.mpps.io/llms.txt", + apiReference: "https://github.com/gdlg-ai/mpps.io/blob/main/docs/api.md", + }, + provider: { name: "GlideLogic Corp.", url: "https://glidelogic.ai" }, + realm: "api.mpps.io", + intent: "charge", + payment: STRIPE_PAYMENT, + endpoints: [ + { route: "POST /v1/notarize", desc: "Free HSM-signed attestation (10/hour)" }, + { route: "POST /v1/certify", desc: "Certified attestation with metadata and certificate", amount: "1" }, + { route: "GET /v1/verify/:uuid", desc: "Verify any attestation" }, + { route: "GET /v1/public-key", desc: "Public key for offline verification" }, + { route: "GET /v1/health", desc: "Service health check" }, + ], + }, ];