lookup_invoice
Retrieve detailed information about a Lightning Network invoice using a BOLT-11 invoice string or payment hash. Facilitates invoice verification and payment tracking within the NWC MCP Server environment.
Instructions
Look up lightning invoice details from a BOLT-11 invoice or payment hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
invoice | No | The BOLT 11 invoice to look up | |
payment_hash | No | The payment hash of the invoice to look up |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"invoice": {
"description": "The BOLT 11 invoice to look up",
"type": "string"
},
"payment_hash": {
"description": "The payment hash of the invoice to look up",
"type": "string"
}
},
"type": "object"
}