Billing proxy for MCP servers. Adds Stripe and x402 crypto payments without writing billing code.
{
"mcpServers": {
"io-github-sapph1re-mcp-billing-gateway": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Billing proxy for MCP servers. Adds Stripe and x402 crypto payments without writing billing code.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Commit history unknown.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
An MCP server for Massive.com Financial Market Data
MCP server for Financial Modeling Prep API with 250+ financial data tools
Non-custodial x402 payments for AI agents. Sign locally, spend limits, Base network.
MCP Security Weekly
Get CVE alerts and security updates for io.github.sapph1re/mcp-billing-gateway and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Add Stripe subscriptions, per-call credits, and x402 crypto payments to any MCP server — without writing billing code.
Live service: https://mcp-billing-gateway-production.up.railway.app
MCP Billing Gateway is a proxy that sits in front of your MCP server and handles all billing automatically:
AI Agent → MCP Billing Gateway → Your MCP Server
(billing enforced here)
https://mcp-billing-gateway.../proxy/{your-slug}/...curl -X POST https://mcp-billing-gateway-production.up.railway.app/api/v1/operator/register \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com", "name": "Your Name"}'
curl -X POST https://mcp-billing-gateway-production.up.railway.app/api/v1/servers \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My MCP Server",
"upstream_url": "https://your-mcp-server.com/mcp",
"proxy_slug": "my-server"
}'
curl -X POST https://mcp-billing-gateway-production.up.railway.app/api/v1/servers/{server_id}/plans \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Pay as you go",
"billing_model": "per_call",
"price_per_call_usd_micro": 10000,
"free_calls_per_month": 100
}'
{
"mcpServers": {
"my-server": {
"url": "https://mcp-billing-gateway-production.up.railway.app/proxy/my-server/mcp",
"headers": {
"Authorization": "Bearer CALLER_API_KEY"
}
}
}
}
| Method | Best for | How |
|---|---|---|
| Stripe subscription | Human developers | Monthly/annual plan |
| Stripe per-call | Human developers | Credits consumed per call |
| x402 micropayments | AI agents | USDC on Base, no API keys |
Access your dashboard at:
https://mcp-billing-gateway-production.up.railway.app/dashboard
Track revenue, usage, active callers, and configure your servers.
Full API docs at: https://mcp-billing-gateway-production.up.railway.app/health
POST /api/v1/operator/register — create operator accountGET /api/v1/operator/profile — view profile and API keysGET /api/v1/operator/stats — revenue and usage statsPOST /api/v1/servers — register an MCP serverGET /api/v1/servers — list your serversPOST /api/v1/servers/{id}/plans — create pricing plan* /proxy/{slug}/* — proxied calls with billing enforcementThe gateway is open for use. If you need a self-hosted deployment, contact us.
MIT