ldk_close_channel
Initiate cooperative or forced closure of a Lightning channel using the specified channel ID. Manage channel termination efficiently with the LDK MCP Server's Lightning Development Kit integration.
Instructions
Close a Lightning channel cooperatively or force close
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | Channel ID to close | |
force | No | Force close the channel |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"description": "Channel ID to close",
"type": "string"
},
"force": {
"default": false,
"description": "Force close the channel",
"type": "boolean"
}
},
"required": [
"channelId"
],
"type": "object"
}