Virtual card payments for AI agents. Create intents, issue cards within policy, and make autonomous purchases with approvals for high-value spend. Use when this capability is needed.
Enable an AI agent to make purchases with virtual cards while Proxy enforces policy.
1) proxy.kyc.status
2) proxy.balance.get
3) proxy.policies.simulate (optional)
4) proxy.intents.create
5) if approvalRequired/pending_approval -> proxy.intents.request_approval
6) proxy.cards.get_sensitive
7) proxy.transactions.list_for_card
{
"mcpServers": {
"proxy": {
"type": "http",
"url": "https://mcp.useproxy.ai/api/mcp",
"headers": {
"Authorization": "Bearer $PROXY_AGENT_TOKEN"
}
}
}
}
<!-- tomevault:3.0:skill_md:2026-04-07 -->These are blocked for agent tokens and live in the dashboard or via OAuth:
proxy.intents.create(
purpose="Buy API credits",
expectedAmount=5000,
expectedMerchant="OpenAI"
)
proxy.cards.get_sensitive(
cardId="card_xyz",
intentId="int_abc123",
reason="Complete OpenAI checkout"
)
If the intent is pending approval, call:
proxy.intents.request_approval(
intentId="int_abc123",
context="Above auto-approve threshold"
)
Converted and distributed by TomeVault | Claim this content