ldk_pay_invoice
Pay a BOLT11 Lightning invoice through the LDK MCP Server, testing payment flows with configurable maximum fee in satoshis.
Instructions
Test payment flows by paying a Lightning invoice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
invoice | Yes | BOLT11 Lightning invoice to pay | |
maxFeeSats | No | Maximum fee in satoshis willing to pay |
Input Schema (JSON Schema)
{
"properties": {
"invoice": {
"description": "BOLT11 Lightning invoice to pay",
"type": "string"
},
"maxFeeSats": {
"default": 10,
"description": "Maximum fee in satoshis willing to pay",
"type": "number"
}
},
"required": [
"invoice"
],
"type": "object"
}