Package Exports
- @fmar/nostr-mcp
Readme
🌐 Nostr MCP Server
A Model Context Protocol (MCP) server that enables AI models to interact with Nostr, allowing them to post notes and interact with the freedom of speech protocol.
Censorship resistance matters, even for LLMs.
BTW, you should join Nostr now!
🚀 Features
- 📝 Post notes to Nostr network
- 💬 Reply to notes and review unanswered conversations
- 🔌 Connect to multiple relays
- 🤖 MCP-compliant API for AI integration
- 💸 Send Lightning zaps to Nostr users (WIP)
- 📡 Server-Sent Events (SSE) support for real-time communication
👷♂️ TODOs
- Add support for multiple simultaneous connections
- Implement stdin transport mode (configurable via environment variable)
📋 Prerequisites
- Node.js 18+
🛠️ Installation
Installing via Smithery
To install Nostr MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @AbdelStark/nostr-mcp --client claudeManual Installation
- Clone the repository:
git clone https://github.com/AbdelStark/nostr-mcp
cd nostr-mcp- Install dependencies:
npm install- Create a
.envfile:
💡 You can copy the
.env.examplefile and modify it as needed.
# Log level (debug, info, warn, error)
LOG_LEVEL=debug
# Node environment (development, production)
NODE_ENV=development
# List of Nostr relays to connect to
NOSTR_RELAYS=wss://relay.damus.io,wss://relay.primal.net,wss://nos.lol
# Your Nostr private key (starts with nsec)
NOSTR_NSEC_KEY=your_nsec_key_here
# Server mode (stdio or sse)
SERVER_MODE=sse
# Port for SSE mode
PORT=9000🚦 Usage
Starting the Server
# Development mode with hot reload
npm run dev
# Production mode
npm startAvailable Tools
post_note
Posts a new note to the Nostr network.
Example input:
{
"content": "Hello from Nostr! 👋"
}post_comment
Replies to an existing note (or comment) using NIP-10 threading tags.
Example input:
{
"rootId": "<64-hex-root-event-id>",
"parentId": "<64-hex-comment-id>",
"content": "Thanks for the feedback!"
}Omit parentId when replying directly to the root note.
update_profile
Updates your Nostr profile metadata (NIP-01 kind 0). Provide any subset of fields.
Example input:
{
"name": "Satoshi",
"about": "Building open money.",
"picture": "https://example.com/avatar.png",
"banner": "https://example.com/banner.jpg",
"website": "https://bitcoin.org",
"nip05": "satoshi@example.com",
"lud16": "satoshi@getalby.com",
"display_name": "Satoshi Nakamoto"
}send_zap
Sends a Lightning zap to a Nostr user by resolving their NIP-05 identifier and issuing a Lightning invoice.
Example input:
{
"nip05Address": "user@domain.com",
"amount": 1000
}get_latest_posts
Fetches the most recent kind 1 posts for the connected account or an optional author public key.
Example input:
{
"authorPubkey": "b8f4c2e90f0dd667121533d7b8dafd77384b0b5051f8272e5493c58f7f93e14b",
"limit": 3
}get_replies
Lists replies to a specific Nostr post (kind 1 events tagged with the original note id using #e).
Example input:
{
"eventId": "3a4f8c2e1d0b5a6978c1f2e3d4b5a6978c1f2e3d4b5a6978c1f2e3d4b5a6978c",
"limit": 20
}get_unreplied_mentions
Surfaces recent mentions that tag your public key with #p and are still waiting for your reply.
Example input:
{
"limit": 5
}create_timestamp_attestation
Creates a NIP-03 OpenTimestamps attestation for a Nostr event (kind 1040). This allows you to cryptographically prove that a specific Nostr event existed at a certain point in time using the Bitcoin blockchain.
Example input:
{
"eventId": "1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"eventKind": 1,
"otsProof": "004f70656e54696d657374616d7073000050726f6f6600bf89e2e884e89294..."
}Note: The otsProof should be the complete OpenTimestamps proof data (usually obtained from another
OpenTimestamps-capable MCP server or tool).
🔧 Development
Project Structure
nostr-mcp/
├── src/
│ ├── index.ts # Main server entry point
│ ├── nostr-client.ts # Nostr client implementation
│ └── types.ts # TypeScript type definitions
├── .env # Environment configuration
└── tsconfig.json # TypeScript configurationRunning Tests
npm test🤝 Contributing
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
📜 License
This project is licensed under the MIT License - see the LICENSE file for details.
🔗 Resources
- Join Nostr
- Nostr Manifesto
- Nostr Specifications
- Model Context Protocol
- Visual testing tool for MCP servers
- Awesome MCP Servers
- Awesome MCP Clients
- MCP TypeScript SDK
- Nostr Development Kit (NDK)
📬 Contact
Feel free to follow me if you'd like, using my public key:
npub1hr6v96g0phtxwys4x0tm3khawuuykz6s28uzwtj5j0zc7lunu99snw2e29Or just scan this QR code to find me:

Made with ❤️ for the Nostr community