ldk_list_payments
Retrieve recent Lightning payments filtered by status using the LDK MCP Server. Specify a limit and status (pending, succeeded, failed, or all) to manage and track payment activity efficiently.
Instructions
List recent Lightning payments with status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of payments to return | |
status | No | Filter by payment status | all |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of payments to return",
"type": "number"
},
"status": {
"default": "all",
"description": "Filter by payment status",
"enum": [
"all",
"pending",
"succeeded",
"failed"
],
"type": "string"
}
},
"type": "object"
}