-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Payment execution layer for simulation-to-action: close the loop on predictions #399
Description
The missing piece in prediction-to-action
MiroFish simulates thousands of agents interacting to predict outcomes — public opinion, market movements, event trajectories. The predictions are valuable. But acting on them still requires a separate manual step: human takes the prediction, makes a decision, executes a trade or places a bet.
For financial prediction use cases (Polymarket, prediction markets, derivatives), there's now infrastructure to close that loop autonomously.
x402 + agentpay-mcp
agentpay-mcp is an MCP server that gives AI agents non-custodial payment capabilities:
- On-chain spend caps (smart contract enforced)
- Human-approval mode for large transactions
- x402 protocol for machine-to-machine payments
- Full audit trail
The x402 protocol is becoming the standard for agent payments — Stripe integrated it in February 2026, and Nexi (€2.9T payments volume) committed to it.
What a MiroFish integration could look like
# After MiroFish simulation completes
prediction = mirofish.run_simulation(seed_data=news_feed, query="BTC price in 7 days")
if prediction.confidence > 0.75 and prediction.direction == "UP":
# Agent executes position with configured spend cap
await agentpay.execute(
action="place_prediction",
market="polymarket://BTC-7day",
amount_usdc=prediction.recommended_size,
max_spend_cap=daily_budget
)Why this is relevant for MiroFish
- Financial prediction is already a listed use case
- The gap between "simulation says X" and "agent does X" is exactly where value leaks
- Users running MiroFish for market prediction are already sophisticated enough to want execution
Prior art
agentpay-mcp merged into NVIDIA NeMo Agent Toolkit Examples (PR #17). 149 tests, MIT, on npm as agentpay-mcp.
Questions
- Is financial prediction (Polymarket, markets) an active use case for MiroFish users?
- Would an integration guide or plugin showing prediction → payment execution be useful?
This wouldn't require core changes — it would be an optional plugin or example workflow.