[
{
"name": "create_virtual_card",
"description": "Create a single-use virtual card via Privacy.com. Returns secure card details.",
"inputSchema": {
"type": "object",
"properties": {
"merchant": {
"type": "string"
},
"amount_cents": {
"type": "number"
}
},
"required": [
"merchant",
"amount_cents"
]
}
},
{
"name": "secure_auto_fill",
"description": "Intelligently finds and fills payment fields on the current page using robust heuristics.",
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"pan": {
"type": "string"
},
"cvv": {
"type": "string"
},
"exp_month": {
"type": "string"
},
"exp_year": {
"type": "string"
}
},
"required": [
"url",
"pan",
"cvv",
"exp_month",
"exp_year"
]
}
},
{
"name": "get_funding_sources",
"description": "List available funding accounts connected to Privacy.com",
"inputSchema": {
"type": "object",
"properties": {}
}
}
]