From df4590ce55b1f5300824cc3eb83eb53575f29a11 Mon Sep 17 00:00:00 2001 From: Hugo6991 <6991hugo@gmail.com> Date: Sun, 22 Mar 2026 18:44:15 +0800 Subject: [PATCH] Add MPP Review API to service directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Community-built, self-hosted MPP service: - POST /api/review — $0.05 USDC per AI code review - Powered by Claude + gstack's /review checklist - Deployed on Vercel with mppx payment gate GitHub: https://github.com/Hugo6991/mpp-review-api Live: https://mpp-review-api.vercel.app Co-Authored-By: Claude Opus 4.6 (1M context) --- schemas/services.ts | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/schemas/services.ts b/schemas/services.ts index 72a4193d..21e5655e 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -4328,4 +4328,33 @@ export const services: ServiceDef[] = [ }, ], }, + // ── MPP Review API ───────────────────────────────────────────────────── + { + id: "mpp-review", + name: "MPP Review", + url: "https://mpp-review-api.vercel.app", + serviceUrl: "https://mpp-review-api.vercel.app", + description: + "AI code review for $0.05 per request. Analyzes code for SQL injection, race conditions, XSS, and other security issues using gstack's production checklist.", + categories: ["ai"], + integration: "third-party", + tags: ["code-review", "security", "claude", "gstack", "developer-tools"], + docs: { + homepage: "https://github.com/Hugo6991/mpp-review-api", + }, + provider: { + name: "Hugo6991", + url: "https://github.com/Hugo6991", + }, + realm: "mpp-review-api.vercel.app", + intent: "charge", + payment: TEMPO_PAYMENT, + endpoints: [ + { + route: "POST /api/review", + desc: "Submit code for security-focused AI review (powered by Claude + gstack checklist)", + amount: "50000", + }, + ], + }, ];