runpay-marketplace
Enables automatic per-call billing via Stripe, allowing AI agents to pay for API services without manual account setup.
run.pay — Agent Marketplace
Stripe-native marketplace where AI agents autonomously discover and purchase API services. Pay-per-call, no accounts needed.
MCP Endpoint
https://runpay-backend-visibility-production.up.railway.app/mcpRelated MCP server: gatefareio/mcp-server
Connect your agent
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"runpay": {
"url": "https://runpay-backend-visibility-production.up.railway.app/mcp"
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"runpay": {
"url": "https://runpay-backend-visibility-production.up.railway.app/mcp",
"transport": "http"
}
}
}Available tools
Tool | Description |
| Browse all available services and prices |
| Call a service and pay automatically via Stripe |
Available services
Service | Price | Description |
Phone Validator | $0.60/call | Validate phone numbers worldwide. Returns country, line type, E164 format |
Phone Validator Batch | $5.00/batch | Validate up to 1000 numbers in one call |
Web Scraper Pro | $0.60/call | Extract title, content, links, emails from any URL |
Web Scraper Batch | $3.00/batch | Scrape up to 10 URLs in parallel |
PDF Generator | $0.60/call | Generate professional PDFs (invoices, reports, contracts) |
Screenshot API | $0.60/call | Capture any website as PNG with site accessibility check |
Python SDK
pip install requestsfrom runpay_sdk import RunPay
# Initialize (sandbox=True for testing without payment)
rp = RunPay(agent_id="my-agent-001", sandbox=False)
# Validate a phone number — $0.60
result = rp.validate_phone("+33612345678")
print(result['country']) # France
print(result['line_type']) # mobile
print(result['is_valid']) # True
# Validate 1000 numbers in one call — $5.00
result = rp.validate_phones_batch(["+33612345678", "+1234567890"])
print(f"{result['valid']}/{result['total']} valid")
# Scrape a website — $0.60
result = rp.scrape("https://example.com")
print(result['title'])
print(result['emails'])
# Scrape 10 URLs in parallel — $3.00
result = rp.scrape_batch(["https://site1.com", "https://site2.com"])
# Generate an invoice PDF — $0.60
result = rp.generate_pdf(
title="Invoice #001",
doc_type="invoice",
language="fr",
data={
"client": "Acme Corp\n123 Rue de Paris",
"invoice_number": "INV-001",
"tax_rate": 20,
"items": [
{"description": "Web Scraping", "qty": 10, "price": 0.60}
]
}
)
with open("invoice.html", "w") as f:
f.write(result['html'])
# Take a screenshot — $0.60
result = rp.screenshot("https://example.com")
print(result['screenshot_url'])
print(result['usage']['embed']) # <img> tag ready to useDownload SDK: runpay_sdk.py
How it works
Sellers publish any API function and set a price per call
AI agents discover services via MCP protocol automatically
Stripe charges the agent per call automatically
Sellers receive payouts directly via Stripe Connect
Sandbox mode (test without payment)
# No real payment — perfect for development
rp = RunPay(agent_id="my-agent-001", sandbox=True)
result = rp.validate_phone("+33612345678")Or via API directly:
curl -X POST https://runpay-backend-visibility-production.up.railway.app/api/sandbox/call/SERVICE_ID \
-H "Content-Type: application/json" \
-d '{"agent_id":"my-agent","payload":{"phone":"+33612345678"}}'Setup your agent wallet
Before calling paid services, your agent needs a payment card attached.
Sell your API
Publish any function and earn per agent call via Stripe.
Links
🌐 Site | |
📖 Docs | |
📝 Sell your API | |
🤖 Agent Setup | |
📊 Dashboard | |
🔍 Smithery |
This server cannot be installed
Maintenance
Related MCP Servers
- Flicense-quality-maintenanceUniversal AI API Orchestrator. 850 tools across 53 services under a single MCP interface. Connect Claude, GPT, or Gemini to Stripe, Slack, GitHub, LinkedIn, Cloudflare, Shopify, Twilio, and 46 more via natural language. $0.10/execution, no subscription. Patent Pending.Last updated3905

gatefareio/mcp-serverofficial
Alicense-qualityAmaintenanceMarketplace MCP for paid HTTP APIs. Pay per call in USDC on Base via the open x402 standard — non-custodial. 13 tools for discovery, buying, and publishing APIs.Last updated451MIT- AlicenseAqualityAmaintenanceThe MCP gateway that lets any AI agent discover and pay metered APIs on Base or Solana — without the user wiring payments themselves.Last updated3401Apache 2.0
- AlicenseCqualityAmaintenanceOne MCP install that lets your AI agents discover and pay (x402 micropayments, USDC on Base + Solana) for 66 specialized real-time intelligence APIs - finance, crypto, insurance, immigration, legal, markets and more. 68 tools, pey-per-query, no subscription.Last updated69451Apache 2.0
Related MCP Connectors
Pay-per-call agent superpowers: media/video gen, product demos, research, GTM, scraping, compute.
Agent Commerce MCP — agent-native A2A storefront. Discovery, Stripe checkout, affiliate program.
AI agent marketplace: agents buy, sell, and collaborate on digital products via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PalabreX/runpay-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server