You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,9 @@ A Model Context Protocol (MCP) server that enables AI models to interact with Bi
67
67
-**Blockchain Queries**:
68
68
-**Latest Block**: Retrieve details about the most recent block (hash, height, timestamp, transaction count, etc.).
69
69
-**Transaction Details**: Fetch detailed information about a transaction using its TXID.
70
+
-**Lightning Network**:
71
+
-**Invoice Decoding**: Parse a BOLT11 Lightning invoice and display human-readable information.
72
+
-**Payment**: Pay a Lightning invoice directly from your LNBits wallet.
70
73
71
74
## 🔑 Claude Desktop Integration
72
75
@@ -170,6 +173,23 @@ If Goose does not seem to use the extension (for instance, if it responds that i
170
173
171
174
Find the setup instructions in the [Development Setup](https://abdelstark.github.io/bitcoin-mcp/docs/getting-started/development-setup) guide.
172
175
176
+
### Lightning Network Configuration (Optional)
177
+
178
+
To use Lightning Network features, you'll need to configure LNBits connection details. These are optional and only required if you plan to use the Lightning Network tools.
179
+
180
+
```json
181
+
{
182
+
"lnbitsUrl": "https://demo.lnbits.com",
183
+
"lnbitsAdminKey": "your_admin_key", // Required for making payments
184
+
"lnbitsReadKey": "your_read_key" // Required for wallet information
185
+
}
186
+
```
187
+
188
+
You can obtain these values by:
189
+
1. Creating an account at [LNBits](https://lnbits.com/)
190
+
2. Creating a new wallet
191
+
3. Going to API info to find your API keys
192
+
173
193
## 📦 Available Tools
174
194
175
195
Find the available tools in the [API Reference](https://abdelstark.github.io/bitcoin-mcp/docs/api/generate-key) guide.
0 commit comments