pay_invoice
Process Lightning Network payments by submitting a BOLT11 invoice through the Bitcoin MCP Server to complete Bitcoin transactions securely and efficiently.
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"
}