The on-chain credit standard for XRPL. XRPLScore™ + 35 done-for-you XRPL services + AI-reviewed community grants. Live at xrplhub.io
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
- !No standard license detected
claude mcp add xrplhub-io -- npx -y prisma{
"mcpServers": {
"xrplhub-io": {
"command": "npx",
"args": ["-y", "prisma"]
}
}
}Resumen de MCP Servers
# XRPLHub.io **On-chain creditworthiness for the XRP Ledger.** XRPLHub gives any XRPL wallet a 300–850 credit-style score (**XRPLScore**) computed from 8 public-ledger signals, sells ready-to-sign prebuilt XRPL transactions for 34 actions, issues signed score certificates (XRPLHub's own attestation), and runs a community micro-grant fund (human-reviewed; applications currently paused). - **Live app:** https://www.xrplhub.io - **Unsigned only, no custody:** XRPLHub builds the exact transaction and scores wallets; it never signs or holds keys. Agents sign with their own wallet (see Ripple's [XRPL AI Starter Kit](https://ripple.com/insights/xrpl-ai-starter-kit/) Wallet and Payment skills). - **The wallet score is free and unauthenticated.** Paid actions settle in **XRP or RLUSD** — no account, no signup. - Next.js + TypeScript on Vercel · Neon Postgres (Prisma) · Xaman (XUMM) for signing. The production app is the Next.js project in [`kreditkarma-backend/`](./kreditkarma-backend). --- ## XRPLScore A 300–850 number on an **absolute scale** (like FICO — not a percentile that drifts with the population), from 8 signals: | Signal | What it measures | |---|---| | Account age | Age from the wallet's genuine first transaction | | Transaction activity | Lifetime on-chain activity (log curve, no cap) | | Financial health | Spendable XRP + buffer above the real reserve line | | Token engagement | Trust lines to issued assets | | DEX activity | Order history on the native DEX | | AMM participation | Liquidity-pool activity | | Security config | Multisig, regular key, domain, escrow | | NFT activity | NFT portfolio + trading | One engine computes the number for the public site, the free endpoint, the paid API, the x402 endpoints and the MCP server. Free and site lookups may be served from a 15-minute cache; every response says whether it was (`fromCache`, `cacheAgeSeconds`). ```bash # Free, no key, any wallet: curl https://www.xrplhub.io/api/score/rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De ``` --- ## For AI agents ### MCP server Streamable HTTP, JSON-RPC 2.0, no auth. ``` https://www.xrplhub.io/api/mcp ``` ```bash claude mcp add xrplhub --url https://www.xrplhub.io/api/mcp ``` | Tool | What you get | Cost | |---|---|---| | `check_xrpl_score` | 300–850 score, grade, percentile, 8-signal breakdown, tips. Param: `wallet_address`. | free | | `list_xrpl_services` | All 34 `build_xrpl_transaction` actions, each with params + examples. No params. | free | | `build_xrpl_transaction` | Ready-to-sign txjson for one of 34 XRPL actions. Params: `product_id`, `wallet_address`, `params`. | free | | `issue_score_credential` | Score certificate signed by XRPLHub (score computed fresh at issuance), with a URL where XRPLHub confirms it — XRPLHub's own attestation, not independently verifiable. 90 days. Params: `wallet_address`, `currency`, `uuid`. | 1 XRP / 1 RLUSD | | `submit_grant_application` | Apply for a community micro-grant. **Currently paused** — returns an error until applications reopen. Params: `wallet_address`, `category`, `amount`, `description`. | free | | `donate_to_community_fund` | Donate XRP or RLUSD to the grant treasury. Params: `amount`, `currency`, `donor_wallet`, `message`. | free | The transaction tools return an **unsigned txjson** — the wallet owner signs it in their own wallet. XRPLHub never signs for anyone. ### x402 (pay-per-call, RLUSD, no signup) - Discovery: https://www.xrplhub.io/.well-known/x402 - OpenAPI 3.1: https://www.xrplhub.io/openapi.json - `GET /api/x402/score?wallet=r...` — 300–850 score + 8 signals - `GET /api/x402/report?wallet=r...` — score + risk flags + recommendations + on-chain snapshot - `GET /api/x402/tx?productId=<id>&account=r...` — one prebuilt XRPL transaction (34 actions) ### llms.txt https://www.xrplhub.io/llms.txt --- ## B2B API (subscription) Buy a key at https://www.xrplhub.io/pricing — pay in **XRP or RLUSD**, connect Xaman and sign (no address typing), no signup. ```bash curl -H "Authorization: Bearer xrs_live_..." \ "https://www.xrplhub.io/api/v1/score?wallet=rMxCKbEDwqr76QuheSUMdEGf4B9xJ8m5De" ``` | Plan | Price | Included | Rate limit | |---|---|---|---| | Free | $0 | 200 scored calls/mo | 10 req/min | | Starter | $29/mo | 10,000 | 60 req/min | | Growth | $149/mo | 100,000 | 300 req/min | | Scale | $499/mo | 1,000,000 | 1,000 req/min | Quotas are hard: past the monthly quota a key gets HTTP 429 until the next month (or an upgrade). There is no overage billing. --- ## Community grants Donate XRP or RLUSD to the treasury. When applications are open, anyone can apply for a $25–$100 micro-grant (rent, utilities, groceries, medical, transport, childcare); a person reviews every application — nothing is decided or paid automatically — and approved funds go straight to the applicant's wallet. Every donation and payout is on-ledger. **Applications are currently paused** until the treasury is funded (`GRANT_APPLICATIONS_OPEN` in `src/lib/grantsStatus.ts`). Treasury: `rs59g3amo5iT6T64Cg96XXMAWuw3WPQcLF` · [view on XRPScan](https://xrpscan.com/account/rs59g3amo5iT6T64Cg96XXMAWuw3WPQcLF) --- ## Development ```bash cd kreditkarma-backend npm install cp .env.example .env # fill in the values npx prisma generate npm run dev ``` See [`kreditkarma-backend/.env.example`](./kreditkarma-backend/.env.example) for every environment variable the app reads. --- ## Links - Site: https://www.xrplhub.io - Pricing: https://www.xrplhub.io/pricing - OpenAPI: https://www.xrplhub.io/openapi.json - x402 discovery: https://www.xrplhub.io/.well-known/x402 - MCP: https://www.xrplhub.io/api/mcp - Contact: support@xrplhub.io
Lo que la gente pregunta sobre XRPLHub.io
¿Qué es Dcroyalty/XRPLHub.io?
+
Dcroyalty/XRPLHub.io es mcp servers para el ecosistema de Claude AI. The on-chain credit standard for XRPL. XRPLScore™ + 35 done-for-you XRPL services + AI-reviewed community grants. Live at xrplhub.io Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-25.
¿Cómo se instala XRPLHub.io?
+
Puedes instalar XRPLHub.io clonando el repositorio (https://github.com/Dcroyalty/XRPLHub.io) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar Dcroyalty/XRPLHub.io?
+
Nuestro agente de seguridad ha analizado Dcroyalty/XRPLHub.io y le ha asignado un Trust Score de 70/100 (tier: OK). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene Dcroyalty/XRPLHub.io?
+
Dcroyalty/XRPLHub.io es mantenido por Dcroyalty. La última actividad registrada en GitHub es del 2026-09-25, con 1 issues abiertos.
¿Hay alternativas a XRPLHub.io?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega XRPLHub.io en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/dcroyalty-xrplhub-io)<a href="https://claudewave.com/repo/dcroyalty-xrplhub-io"><img src="https://claudewave.com/api/badge/dcroyalty-xrplhub-io" alt="Featured on ClaudeWave: Dcroyalty/XRPLHub.io" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
The fastest path to AI-powered full stack observability, even for lean teams.