← payram.com
INDIVIDUAL MCP TOOL
generate_referral_status_snippet
Generates code to fetch referral progress, rewards, or status.
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.payram-com]
url = "https://mcp.payram.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"payram-com": {
"type": "http",
"url": "https://mcp.payram.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: payram-com
Remote MCP URL: https://mcp.payram.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"payram-com": {
"url": "https://mcp.payram.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"payram-com": {
"type": "http",
"url": "https://mcp.payram.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "payram-com",
"transport": "streamable-http",
"url": "https://mcp.payram.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
test_payram_connection— Checks the /api/v1/payment endpoint on a Payram server using baseUrl and apiKey.payram_doctor— Staged, read-only health diagnosis: server reachability -> merchant API key -> admin JWT -> payment readiness (wallets + listener workers).generate_payment_sdk_snippet— Generates backend code using the official Payram JS/TS SDK to create a payment.generate_payment_http_snippet— Generates a raw HTTP sample for creating a Payram payment in the requested language.generate_payment_status_snippet— Generates backend code to query the status of a Payram payment.generate_payment_route_snippet— Generates a ready-to-use backend endpoint (e.g., /api/pay/create) that creates a Payram payment.snippet_nextjs_payment_route— Returns a Next.js App Router API route that calls Payram's create-payment HTTP API.snippet_express_payment_route— Returns an Express router that posts to Payram's /api/v1/payment endpoint.