Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform --- name: rapay description: Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform homepage: https://rapay.ai user-invocable: true metadata: {"openclaw": {"emoji": "💸", "requires": {"bins": ["node", "npm"]}, "os": ["darwin", "linux", "win32"], "install": [{"node": "@rapay/cli"}]}} --- Ra Pay — AI-Native Fiat Payments Ra Pay is the first CLI-native payment platform built for AI ag
git clone https://github.com/greendlt224/rapay-clawhub-skill.gitOverall rank
#31
Adoption
No public adoption signal
Trust
Unknown
Freshness
Apr 15, 2026
Freshness
Last checked Apr 15, 2026
Best For
rapay is best for be, manage, parse workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform --- name: rapay description: Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform homepage: https://rapay.ai user-invocable: true metadata: {"openclaw": {"emoji": "💸", "requires": {"bins": ["node", "npm"]}, "os": ["darwin", "linux", "win32"], "install": [{"node": "@rapay/cli"}]}} --- Ra Pay — AI-Native Fiat Payments Ra Pay is the first CLI-native payment platform built for AI ag Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Apr 15, 2026
Vendor
Rapay
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
git clone https://github.com/greendlt224/rapay-clawhub-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Rapay
Protocol compatibility
MCP
Handshake status
UNKNOWN
Events
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
npm install -g @rapay/cli
bash
ra --version
bash
ra add-card
bash
ra link-bank
bash
ra link-bank --account acct_XXXXXXXXX
bash
ra accept-tos
Editorial read
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform --- name: rapay description: Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform homepage: https://rapay.ai user-invocable: true metadata: {"openclaw": {"emoji": "💸", "requires": {"bins": ["node", "npm"]}, "os": ["darwin", "linux", "win32"], "install": [{"node": "@rapay/cli"}]}} --- Ra Pay — AI-Native Fiat Payments Ra Pay is the first CLI-native payment platform built for AI ag
Ra Pay is the first CLI-native payment platform built for AI agents. It lets you send compliant fiat USD payments using simple CLI commands. Every payment goes through Stripe's regulated infrastructure with full compliance screening.
This skill teaches you how to use the Ra Pay CLI to send business payments on behalf of your user.
npm install -g @rapay/cli
Verify installation:
ra --version
Expected output: ra-cli 1.5.0 or later.
Before sending payments, the user must complete account setup. The steps depend on whether they want to send, receive, or both.
| Goal | Required Command | What It Does |
|------|-----------------|--------------|
| Send payments | ra add-card | Saves a credit card via Stripe Checkout (no bank account needed) |
| Receive payments | ra link-bank | Connects a bank account via Stripe Connect (for payouts) |
| Both | ra add-card + ra link-bank | Full sender + receiver setup |
ra add-card
This opens a Stripe Checkout page in the browser where the user securely saves a credit card. Once complete, the card is stored with Stripe (not locally) and payments can be sent immediately. No bank account or Stripe Connect onboarding is needed to send.
ra link-bank
This opens a Stripe-hosted flow in the browser where the user connects their bank account via Stripe Connect. Once complete, the CLI stores the session locally. This is required to receive payments — senders do not need this step.
To reconnect an existing verified account:
ra link-bank --account acct_XXXXXXXXX
ra accept-tos
The user must accept Ra Pay's Terms of Service before sending any payments.
Check TOS status at any time:
ra tos-status
ra whoami
Confirm the account shows as linked and verified before proceeding with payments.
Ra Pay uses a two-step confirmation flow for every payment. This is mandatory — never skip the preview step.
ra send <AMOUNT> USD to <RECIPIENT_ID> --for "<BUSINESS_PURPOSE>" --json
Example:
ra send 150 USD to acct_1A2B3C4D5E --for "Logo design work - Invoice #427" --json
This returns a fee breakdown without executing the payment:
{
"status": "preview",
"amount": 150.00,
"currency": "USD",
"recipient": "acct_1A2B3C4D5E",
"fee": 3.00,
"total": 153.00,
"business_purpose": "Logo design work - Invoice #427"
}
You MUST show the fee breakdown to the user and ask for explicit confirmation before proceeding. Never auto-confirm a payment.
Present the details clearly:
Only after the user explicitly confirms, add the --confirm flag:
ra send 150 USD to acct_1A2B3C4D5E --for "Logo design work - Invoice #427" --json --confirm
The --confirm flag executes the payment. Without it, you always get a preview.
acct_ followed by alphanumeric characters)Ra Pay is a business-to-business payment platform. Every payment requires a --for flag with a legitimate business purpose (10–200 characters).
Good examples:
"Freelance development work - Invoice #123""API consulting services - March 2026""Logo design work""Website hosting fees - Q1 2026""Content writing - 5 blog posts"Business purposes should be specific and describe real goods or services rendered.
Ra Pay will reject payments with purposes that match these categories:
Peer-to-peer language — Ra Pay is not for personal transfers:
Gift language:
Money laundering red flags:
Vague or unspecific purposes:
Gibberish or test strings:
Tell the user: "Ra Pay is for business transactions only. Please provide a specific business purpose describing the goods or services involved."
Help them rewrite their purpose to be specific and business-related.
ra add-card
Opens Stripe Checkout in the browser to save or update a credit card for sending payments. The card is stored securely with Stripe, not locally.
To remove a saved card, use ra dashboard to open the Stripe Dashboard where the user can manage or delete their payment methods.
ra balance --json
Returns current balance, pending amounts, and payout schedule.
ra history --json
Returns recent payments with timestamps and status. To show more transactions:
ra history --limit 50 --json
The --limit flag accepts values from 1 to 100 (default: 20 in CLI, 10 in MCP).
ra whoami
Shows user ID, Stripe account status, verification status, and account tier.
ra refund
Opens the Stripe Dashboard in the browser for processing refunds. Refunds must be handled through the Stripe interface for security.
ra dispute
Opens the Stripe Disputes page. Remind the user: disputes must be responded to within the given timeframe or they auto-resolve against the user.
ra dashboard
Opens the full Stripe account dashboard in the browser. Use this for managing payment methods (including removing saved cards), viewing detailed transaction records, and account settings.
ra unlink
Disconnects the Stripe account and clears the local session.
Always use --json when calling Ra Pay commands. This returns structured JSON output that you can parse reliably instead of human-formatted text.
Commands that support --json:
ra send ... --jsonra balance --jsonra history --jsonra add-card. To receive, run ra link-bank.ra accept-tos.acct_ followed by alphanumeric characters.npm install -g @rapay/cliacct_ IDs provided by the user.--json for structured output.Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T04:44:29.231Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "manage",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "parse",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:be|supported|profile capability:manage|supported|profile capability:parse|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Rapay",
"href": "https://rapay.ai",
"sourceUrl": "https://rapay.ai",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T05:21:22.124Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[]
Sponsored
Ads related to rapay and adjacent AI workflows.