pay_invoice
Process BOLT11 Lightning invoices to facilitate Bitcoin payments via the Bitcoin MCP Server, enabling quick and efficient transaction handling.
Instructions
Pay 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"
}