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"]
}
}
}MCP Servers overview
# 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
What people ask about XRPLHub.io
What is Dcroyalty/XRPLHub.io?
+
Dcroyalty/XRPLHub.io is mcp servers for the Claude AI ecosystem. The on-chain credit standard for XRPL. XRPLScore™ + 35 done-for-you XRPL services + AI-reviewed community grants. Live at xrplhub.io It has 0 GitHub stars and its last recorded update is dated 2026-09-25.
How do I install XRPLHub.io?
+
You can install XRPLHub.io by cloning the repository (https://github.com/Dcroyalty/XRPLHub.io) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is Dcroyalty/XRPLHub.io safe to use?
+
Our security agent has analyzed Dcroyalty/XRPLHub.io and assigned a Trust Score of 70/100 (tier: OK). See the full breakdown of passed checks and flags on this page.
Who maintains Dcroyalty/XRPLHub.io?
+
Dcroyalty/XRPLHub.io is maintained by Dcroyalty. The last recorded GitHub activity is dated 2026-09-25, with 1 open issues.
Are there alternatives to XRPLHub.io?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy XRPLHub.io to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](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>More 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.