decode_invoice
Decode BOLT11 Lightning invoices to extract payment details, supported by the Bitcoin MCP Server for accurate blockchain data retrieval.
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"
}