ios_biometric_auth
Enable biometric authentication (Touch/Face ID) for secure Lightning Network operations like sending payments, opening/closing channels, and exporting seeds. Integrates with LDK MCP Server for iOS Lightning wallet development.
Instructions
Integrate Touch/Face ID with Lightning operations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
operation | No | Operation requiring biometric auth | send_payment |
requireAuth | No | Whether to require biometric auth |
Input Schema (JSON Schema)
{
"properties": {
"operation": {
"default": "send_payment",
"description": "Operation requiring biometric auth",
"enum": [
"send_payment",
"open_channel",
"close_channel",
"export_seed"
],
"type": "string"
},
"requireAuth": {
"default": true,
"description": "Whether to require biometric auth",
"type": "boolean"
}
},
"type": "object"
}