🏆MoneyMQ wins 1st prize at x402 Hackathon

The Payment Stack
for |

Define revenue streams in YAML. Simulate locally. Optimize. Git push.

Documentation
$curl -sL https://install.money.mq | bash
product.yaml
1
2
3
4
5
6
7
8
# MoneyMQ Product - API version v1
name: API Access
description: Programmatic access
features:
requests_per_month: 100000
price:
amounts:
usd: 49.99
01 — DEFINE

Revenue streams in YAML

Your pricing lives in your repo, not a dashboard. Products, tiers, and variants defined in files your local copilot already understands.

One-shot implementation

Any copilot can implement your entire pricing in a single pass. Tested with Claude Code, Cursor, OpenAI Codex, and more.

billing/v1/products/
├── base/
├── pro/
├── enterprise/
└── regional/
Infinite variants

Create unlimited pricing tiers, regional variations, and A/B tests. Deep merge inheritance keeps things DRY.

$ git log --oneline
a3f2c1dfeat: enterprise
b7e4a2ffix: pro pricing
c9d1b3efeat: variants
d2f5c4ainit: pricing
Version controlled

Every pricing change is a commit. Full audit trail, easy rollbacks, blame history for compliance.

name: Pro
price: 49.99
interval: mo
trial: 14d
"Pro Plan"
$49.99/mo
monthly
14d trial
Human readable

No black-box dashboards. Your entire revenue model in plain text that anyone can understand and review.

02 — SIMULATE

Full stack on localhost

The complete payment infrastructure runs on your machine. Real transactions, real settlement logic, real edge cases — all on 127.0.0.1.

✈️Work from anywhere — even offline
🔒No sign-up required, no API keys
🚫No tunnels, no ngrok, no exposed ports
📦You own the entire stack

What you simulate is what you get. The same code runs locally and in production. No surprises at deploy time.

terminal
Running
$ moneymq dev
MoneyMQ v1.0.0
Dashboard: http://localhost:8488
API: http://localhost:8489
Catalog: 3 products, 12 variants
Payments: Simulated USDC
Ready ✓
03 — OPTIMIZE

Your copilot knows your business

Your AI assistant has full context of your codebase, your users, and your revenue model. It can suggest pricing strategies that actually make sense for your product.

Copilot Chat
You
Our enterprise users need higher rate limits. Can you create a new tier?
AI
I'll create an Enterprise variant with 10x the rate limit. Based on your current Pro pricing and typical enterprise markups in your industry, I suggest $299/month.
# variants/enterprise/product.yaml
features:
rate_limit: 10000
prices:
- amount: 29900
Native A/B testing

Variants aren't just for tiers. Create pricing experiments, roll them out to segments, measure conversion. All in version control.

Context-aware suggestions

Your copilot sees your user data, your analytics, your competitors. Pricing recommendations grounded in reality, not guesswork.

MCP integration

MoneyMQ exposes an MCP server. Your copilot can query catalogs, simulate purchases, and validate changes before you commit.

04 — DEPLOY

Git push to production

GitOps for revenue. Open pull requests for pricing changes, review with your team, merge when ready. Your CI/CD pipeline handles the rest.

1
Open a pull request
Propose pricing changes like any code change
2
Review and validate
CI runs simulations, flags potential issues
3
Merge and deploy
Changes go live automatically
Your cloud
Deploy to your infrastructure. Kubernetes, Docker, bare metal. CNCF-native.
Our cloud
Zero ops. Global edge. We handle everything.
GitHub Pull Request
Add enterprise tier pricing
#142 opened by copilot-assistant
+ variants/enterprise/product.yaml
+ 12 additions
All checks passed