decode_invoice
Extract details from a BOLT11 Lightning invoice using the Cross-LLM MCP Server. Streamline invoice decoding for accurate payment processing and validation.
Instructions
Decode a Lightning invoice
Input Schema
Name | Required | Description | Default |
---|---|---|---|
invoice | Yes | BOLT11 Lightning invoice |
Input Schema (JSON Schema)
{
"properties": {
"invoice": {
"description": "BOLT11 Lightning invoice",
"type": "string"
}
},
"required": [
"invoice"
],
"type": "object"
}