MCP server
by abdelstark
Lightning Nostr makes decentralized social networking easy by integrating with Nostr for posting notes and relay interac
Enables AI models to pay Lightning Network invoices through LNBits integration, providing Bitcoin micropayment capabilities.
Lightning Nostr is a community-built MCP server published by abdelstark that provides AI assistants with tools and capabilities via the Model Context Protocol. Lightning Nostr makes decentralized social networking easy by integrating with Nostr for posting notes and relay interac It is categorized under finance.
You can install Lightning Nostr in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Lightning Nostr is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Lightning Nostr has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Useful MCP listing: Lightning Nostr is the kind of server we cite when onboarding engineers to host + tool permissions.
Lightning Nostr reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Lightning Nostr for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Lightning Nostr surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We evaluated Lightning Nostr against two servers with overlapping tools; this profile had the clearer scope statement.
Lightning Nostr reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Lightning Nostr has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Useful MCP listing: Lightning Nostr is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated Lightning Nostr against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 43
A Model Context Protocol (MCP) server that enables AI models to interact with Lightning Network, allowing them to pay invoices.
To install Lightning Network MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @AbdelStark/lightning-mcp --client claude
git clone https://github.com/AbdelStark/lightning-mcp
cd lightning-mcp
npm install
.env file:💡 You can copy the
.env.examplefile and modify it as needed.
# Bitcoin Lightning Network
## lnbits information
BITCOIN_LNBITS_NODE_URL="https://demo.lnbits.com"
BITCOIN_LNBITS_ADMIN_KEY="..."
BITCOIN_LNBITS_READ_KEY="..."
# Development mode with hot reload
npm run dev
# Production mode
npm start
pay_invoicePays an invoice on the Lightning Network.
Example input:
{
"content": "lnbc20n1pneh8papp5x0syxmdqffcltfk8mqp00qc6j4kf5elkmr5pws9gm242mw9n0ejsdqqcqzzsxqyz5vqrzjqvueefmrckfdwyyu39m0lf24sqzcr9vcrmxrvgfn6empxz7phrjxvrttncqq0lcqqyqqqqlgqqqqqqgq2qsp563lg29qthfwgynluv7fvaq5d6y2hfdl383elgc6q68lccfzvpvfs9qxpqysgq2n6yhvs8aeugvrkcx8yjzdrqqmvp237500gxkrk0fe6d6crwpvlp96uvq9z2dfeetv5n23xpjlavgf0fgy4ch980mpv2rcsjasg2hqqpalykyc"
}
lightning-mcp/
├── src/
│ ├── index.ts # Main server entry point
│ ├── lnbits-client.ts # Lightning Network client implementation
│ └── types.ts # TypeScript type definitions
├── .env # Environment configuration
└── tsconfig.json # TypeScript configuration
npm test
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
Feel free to follow me if you’d like, using my public key:
npub1hr6v96g0phtxwys4x0tm3khawuuykz6s28uzwtj5j0zc7lunu99snw2e29
Or just scan this QR code to find me:

Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.