Setup PayRam. Three ways.
One bash script. One LLM prompt. Or the advanced guide. Pick the path that fits how you ship — or let an agent do the whole install for you. Five minutes on any Ubuntu VPS, no signup, no KYB.
bash <(curl -fsSL https://payram.com/setup_payram.sh)
Ship how you ship.
Whether you're the dev, the agent, or the platform team — there's a path. Same PayRam runs underneath; you control the deployment surface.
The one-liner.
For devs who just want PayRam running. Copy this into a terminal on a fresh Ubuntu 22.04+ VPS. Five minutes, web dashboard included.
bash <(curl -fsSL https://payram.com/setup_payram.sh)
Let your agent install it.
Paste this prompt into ChatGPT, Claude, Copilot, Cursor, OpenClaw, or any MCP-capable agent. The agent will ask you a few questions, pick testnet or mainnet, and run the headless install.
Set up PayRam as a self-hosted crypto payment gateway on my machine.
Before you begin, ask me:
1. Is this a remote VPS or my local machine?
2. Do I need testnet or mainnet?
3. Which stablecoin do I want to accept first (USDT on Tron, USDC on Base, or a different chain)?
Then run the headless agent install:
bash <(curl -fsSL https://payram.com/setup_payram_agents.sh)
Use https://mcp.payram.com as the MCP server for tools and documentation —
register it in your MCP config as:
{ "mcpServers": { "payram": { "url": "https://mcp.payram.com/mcp" } } }
Walk me through each step, confirm each prerequisite before continuing,
and verify the install succeeded by calling the test_connection tool.Custom deployments.
Docker compose, systemd, custom TLS, multi-region, staging environments, HA, custom chains. The full deployment reference on docs.payram.com.
Prerequisites — minimal.
Seed never leaves the hardware wallet. Server only holds a read-only xPub.
Let an LLM debug it with you.
Copy this prompt, paste into ChatGPT, Claude, Copilot, or any MCP-capable client. It reads the install script, asks about your environment, and walks you through a fix using mcp.payram.com for known issues.
- Reads the install script for full context
- Asks about your OS, hardware, and network
- References the MCP server for known issues
- Guides reproduction + resolution step-by-step
I'm installing PayRam using the official script: https://payram.com/setup_payram.sh First, fetch and read the content of that script so you have the full context of what it does. Then ask me about: - My operating system and version - Hardware (CPU, RAM, disk) and whether this is a local machine or VPS - My network setup (firewall, domain, SSL) - The exact step I'm stuck at - The exact error message (copy-paste verbatim) Use https://mcp.payram.com as a reference for known issues, tools, and the full MCP skill catalog. If useful, have the agent call test_connection or relevant diagnostic tools. Walk me through a minimal reproduction and resolution. Don't guess — ask clarifying questions until you're confident about my environment.
Works in ChatGPT · Claude · Copilot · Cursor · OpenClaw · any MCP client
One script tag. Live payments.
Drop the Add Credit widget on any page — HTML, React, WordPress, static site. Customers see a clean 3-step flow, pay with crypto or card-to-crypto, and you receive a webhook. Prefer full control? Use the REST API or call the MCP server directly.
Add Credit
Choose an amount to add to your demo account.
Same widget. Configured for the PayRam sandbox. Amount selection → test funds → payment confirmed.
<script src="https://payram.com/widget/payram-add-credit-v1.js" data-payram-url="https://your-payram-node.com" data-api-key="pr_live_xxxxxxxxxxxxx" data-amounts="5,10,25,50,100" data-theme="dark" data-brand-label="Your Brand" data-currency="USDC" data-chain="base"> </script>
Drop into <body> wherever the widget should mount. Configure via data attributes — data-amounts, data-theme, data-chain. Handle the payment.confirmed webhook on your server.
Explore the full documentation.
API reference, webhook contracts, deployment topologies, RPC configuration, multi-region setups, SSL guidance, disaster recovery — the definitive technical manual lives at docs.payram.com.
Supported Chains & Tokens
20+ tokens across 6 networks. Stablecoin-native — USDT and USDC on every supported chain.
Setup questions.
Which install script should I run?+
setup_payram.sh for the full install with the web dashboard — the default for most people. setup_payram_agents.sh for a headless, CLI-only install that an autonomous agent can drive end-to-end.Do I need to sign up or create an account?+
What happens if my server is compromised?+
Can an AI agent install PayRam autonomously?+
How do I integrate PayRam into my web app?+
payram-add-credit-v1.js script tag on any page, handle the payment.confirmed webhook on your server, done. Full code examples for Express, Next.js, FastAPI, Laravel, and Gin are on the widget integration skill.