The Nostr MCP Server enables interaction with the Nostr network through various tools:
Fetch User Profiles: Retrieve profile information by public key (hex or npub format) using
getProfileFetch Text Notes: Get text notes (kind 1) authored by a user with
getKind1Notes, customizable with limitsFetch Long-form Content: Retrieve kind 30023 content authored by users
Fetch Zaps: Get zaps sent (
getSentZaps), received (getReceivedZaps), or both (getAllZaps) with validation optionsNIP Search: Search through Nostr Implementation Possibilities with relevance scoring
Anonymous Zaps: Generate lightning invoices for anonymous zaps to profiles or events
Custom Relays: Specify preferred relays for any query
User-Friendly Formats: Support for both hex public keys and npub format
Validation Options: NIP-57 compliance checking for zap receipts
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Nostr MCP Serverget profile for npub1sg6plzptd64u62a878hep2kev88swjh3tw00gjsfl8f237lmu63q0uf63m"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Nostr MCP Server
A Model Context Protocol (MCP) server that provides Nostr capabilities to LLMs like Claude.
https://github.com/user-attachments/assets/1d2d47d0-c61b-44e2-85be-5985d2a81c64
Features
This server implements 40 tools for interacting with the Nostr network:
Reading & Querying Tools
getProfile: Fetches a user's profile information by public keygetKind1Notes: Fetches text notes (kind 1) authored by a usergetLongFormNotes: Fetches long-form content (kind 30023) authored by a usergetReceivedZaps: Fetches zaps received by a user, including detailed payment informationgetSentZaps: Fetches zaps sent by a user, including detailed payment informationgetAllZaps: Fetches both sent and received zaps for a user, clearly labeled with direction and totalsqueryEvents: Generic event query tool supporting kinds/authors/ids/tags and timestampsgetContactList: Fetches a user's contact list (kind 3) and followed pubkeysgetFollowing: Alias ofgetContactListgetRelayList: Fetches a user's relay list metadata (NIP-65 kind 10002)
Identity & Profile Management Tools
createKeypair: Generate new Nostr keypairs in hex and/or npub/nsec formatcreateProfile: Create a new Nostr profile (kind 0 event) with metadataupdateProfile: Update an existing Nostr profile with new metadata
Note Creation & Publishing Tools
createNote: Create unsigned kind 1 note events with specified content and tagssignNote: Sign note events with a private key, generating cryptographically valid signaturespublishNote: Publish signed notes to specified Nostr relayspostNote: All-in-one authenticated note posting using an existing private key (nsec/hex)
Generic Event Tools
createNostrEvent: Create unsigned Nostr events of any kind (provides low-level building block for NIPs beyond notes/profiles)signNostrEvent: Sign any unsigned Nostr event with a private keypublishNostrEvent: Publish any signed Nostr event to relays
Social Tools
setRelayList: Publish your relay list metadata (NIP-65 kind 10002)follow: Follow a pubkey by updating your contact list (kind 3)unfollow: Unfollow a pubkey by updating your contact list (kind 3)reactToEvent: React to an event (kind 7)repostEvent: Repost an event (kind 6)deleteEvent: Delete one or more events (kind 5 deletion request)replyToEvent: Reply to an event with correct NIP-10 thread tags (kind 1)
Messaging Tools
encryptNip04: Encrypt plaintext using NIP-04 (AES-CBC) for direct messagesdecryptNip04: Decrypt ciphertext using NIP-04 (AES-CBC) for direct messagessendDmNip04: Send a NIP-04 encrypted DM (kind 4)getDmConversationNip04: Fetch and optionally decrypt a NIP-04 DM conversation (kind 4)encryptNip44: Encrypt plaintext using NIP-44 (ChaCha20 + HMAC)decryptNip44: Decrypt ciphertext using NIP-44 (ChaCha20 + HMAC)sendDmNip44: Send a NIP-44 encrypted DM using NIP-17 gift wrap (kind 1059)decryptDmNip44: Decrypt a NIP-17 gift wrapped DM (kind 1059)getDmInboxNip44: Fetch and decrypt your NIP-44 DM inbox (NIP-17 gift wraps, kind 1059)
Anonymous Tools
sendAnonymousZap: Prepare an anonymous zap to a profile or event, generating a lightning invoice for paymentpostAnonymousNote: Post an anonymous note using a randomly generated one-time keypair
NIP-19 Entity Tools
convertNip19: Convert between different NIP-19 entity formats (hex, npub, nsec, note, nprofile, nevent, naddr)analyzeNip19: Analyze and decode any NIP-19 entity to understand its type and contents
All tools fully support both hex public keys and npub format, with user-friendly display of Nostr identifiers.
Related MCP server: Notion MCP Server
Installation
Option 1: Install from npm (Recommended)
npm install -g nostr-mcp-serverOption 2: Install from source (using Bun - Recommended)
# Clone the repository
git clone https://github.com/austinkelsay/nostr-mcp-server.git
cd nostr-mcp-server
# Install dependencies
bun install
# Build the project
bun run buildOption 3: Install from source (using npm)
# Clone the repository
git clone https://github.com/austinkelsay/nostr-mcp-server.git
cd nostr-mcp-server
# Install dependencies
npm install
# Build the project
npm run buildConnecting to Claude for Desktop
Make sure you have Claude for Desktop installed and updated to the latest version.
Configure Claude for Desktop by editing or creating the configuration file:
For macOS:
vim ~/Library/Application\ Support/Claude/claude_desktop_config.jsonFor Windows:
notepad %AppData%\Claude\claude_desktop_config.jsonAdd the Nostr server to your configuration:
If installed via npm:
{ "mcpServers": { "nostr": { "command": "npx", "args": [ "nostr-mcp-server" ] } } }If installed from source:
{ "mcpServers": { "nostr": { "command": "node", "args": [ "/ABSOLUTE/PATH/TO/nostr-mcp-server/build/index.js" ] } } }For source installations, replace
/ABSOLUTE/PATH/TO/with the actual path to your project.Restart Claude for Desktop.
Connecting to Cursor
Make sure you have Cursor installed and updated to the latest version.
Configure Cursor by creating or editing the configuration file:
For macOS:
vim ~/.cursor/config.jsonFor Windows:
notepad %USERPROFILE%\.cursor\config.jsonAdd the Nostr server to your configuration:
If installed via npm:
{ "mcpServers": { "nostr": { "command": "npx", "args": [ "nostr-mcp-server" ] } } }If installed from source:
{ "mcpServers": { "nostr": { "command": "node", "args": [ "/ABSOLUTE/PATH/TO/nostr-mcp-server/build/index.js" ] } } }For source installations, replace
/ABSOLUTE/PATH/TO/with the actual path to your project.Restart Cursor.
Connecting to Goose
Make sure you have Goose installed and properly configured.
Add the Nostr MCP server to your Goose configuration:
Open your Goose configuration file (typically
~/.config/goose/profiles.yaml) and add the following to your profile'smcpServerssection:If installed via npm:
profiles: default: provider: # your existing provider config model: # your existing model config mcpServers: - name: nostr command: npx args: - nostr-mcp-serverIf installed from source:
profiles: default: provider: # your existing provider config model: # your existing model config mcpServers: - name: nostr command: node args: - /ABSOLUTE/PATH/TO/nostr-mcp-server/build/index.jsFor source installations, replace
/ABSOLUTE/PATH/TO/with the actual path to your project.Restart Goose or reload your configuration for the changes to take effect.
You can verify the MCP server is connected by asking Goose:
What MCP tools do you have available for Nostr?
Usage in Claude
Once configured, you can ask Claude to use the Nostr tools by making requests like:
Reading & Querying
"Show me the profile information for npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8"
"What are the recent posts from npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8?"
"Show me the long-form articles from npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8"
"How many zaps has npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8 received?"
"Show me the zaps sent by npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8"
"Show me all zaps (both sent and received) for npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8"
Identity & Profile Management
"Generate a new Nostr keypair for me"
"Create a keypair in both hex and npub format"
"Create a new profile with name 'Alice' and about 'Bitcoiner and developer'"
"Update my profile with picture 'https://example.com/avatar.jpg' and website 'https://alice.dev'"
Note Creation & Publishing
"Create a note event with content 'Hello Nostr!' and tags #intro #nostr"
"Sign this note event with my private key nsec1xyz..."
"Publish this signed note to wss://relay.damus.io and wss://nos.lol"
"Post a note saying 'GM Nostr! ☀️' using my private key nsec1xyz..."
Generic Event Operations
"Query kind 7 reaction events from this pubkey from the last 24 hours"
"Create a kind 7 reaction event to this note ID with content '+'"
"Sign this generic Nostr event with my private key and publish it"
Social & Relay Management
"Follow this pubkey using my private key nsec1xyz..."
"Unfollow this pubkey using my private key"
"Reply to this event ID with 'Great point' using my private key"
"Set my relay list to wss://relay.damus.io and wss://nos.lol"
"Fetch the relay list for this npub"
Direct Messaging (NIP-04 / NIP-44)
"Encrypt 'hey' with NIP-04 for this recipient pubkey"
"Send a NIP-04 DM saying 'hello' to this pubkey using my private key"
"Send a NIP-44 DM saying 'check this out' to this pubkey"
"Fetch and decrypt my NIP-44 inbox using my private key"
Anonymous Operations
"Send an anonymous zap of 100 sats to npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8"
"Send 1000 sats to note1abcdef... with a comment saying 'Great post!'"
"Post an anonymous note saying 'Hello Nostr world!'"
"Create an anonymous post with tags #bitcoin and #nostr"
NIP-19 Entity Conversion & Analysis
"Convert this hex pubkey to npub: 06639334b39dd9cf4aa1323375931bec1d6cd43b5de30af7b70b08262e5f6e3f"
"Convert npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8 to hex format"
"Convert this note ID to nevent format with relay hints"
"What type of entity is nprofile1qqsw3dy8cpu...? Analyze it for me"
"Decode and analyze this NIP-19 entity: nevent1qqs..."
The server automatically handles conversion between npub and hex formats, so you can use either format in your queries. Results are displayed with user-friendly npub identifiers.
Anonymous Notes
The postAnonymousNote tool allows users to post notes to the Nostr network without revealing their identity. Key points about anonymous notes:
The note will be published using a random one-time keypair generated just for this post
The private key is never stored or saved anywhere - it's used only for signing the note
You receive the public key and note ID in the response if you want to reference them
You can optionally specify custom tags to include with your note
By default, the note is published to several popular relays to ensure good propagation
Examples:
"Post an anonymous note saying 'Just trying out the anonymous posting feature!'"
"Create an anonymous note with the content 'Testing the Nostr anonymity features' and tags #test #anonymous"
"Post anonymously to Nostr: 'I can share thoughts without linking to my identity'"For more control, you can specify custom relays:
"Post an anonymous note to relay wss://relay.damus.io saying 'Hello Nostr world!'"This feature is useful for:
Testing posts without affecting your main identity
Sharing information anonymously
Creating temporary or throwaway content
Identity & Profile Management
The server provides comprehensive tools for managing Nostr identities and profiles:
Keypair Generation
The createKeypair tool generates cryptographically secure Nostr keypairs using the secp256k1 curve. You can choose to receive keys in hex format, npub/nsec format, or both:
"Generate a new Nostr keypair in both hex and npub format"
"Create a keypair with only hex keys"
"Generate keys in npub format only"Profile Creation & Updates
Create and manage Nostr profiles (kind 0 events) with full metadata support:
Names & Bio: Set display names, usernames, and about text
Media: Add profile pictures and banners
Identity: Configure NIP-05 identifiers for verification
Lightning: Set up Lightning addresses (LUD-16) and LNURL (LUD-06) for payments
Web Presence: Add personal websites and social links
Examples:
"Create a profile with name 'Alice', about 'Bitcoin developer', and picture 'https://example.com/alice.jpg'"
"Update my profile to add website 'https://alice.dev' and Lightning address 'alice@getalby.com'"Authenticated Note Posting
Individual Note Operations
For advanced users who need granular control over the note creation process:
createNote: Creates unsigned note events with your content and tagssignNote: Signs note events with your private key, generating cryptographically valid signaturespublishNote: Publishes signed notes to your chosen relays
This modular approach allows for:
Offline note creation and later signing
Batch operations across multiple notes
Integration with external signing workflows
Publishing to different relay sets
All-in-One Posting
The postNote tool provides a convenient single-command approach for authenticated posting:
"Post a note saying 'GM Nostr! ☀️' using my private key nsec1xyz..."
"Create a post with content 'Just shipped a new feature!' and tags #development #nostr"
"Post 'Beautiful sunset today 🌅' with tags #photography #nature to relay wss://relay.damus.io"Key features:
Authenticated Identity: Posts appear under your established Nostr identity
Format Flexibility: Accepts both hex and nsec private key formats
Tag Support: Add hashtags, mentions, and custom metadata
Relay Control: Publish to specific relays or use defaults
Advanced Usage
You can specify custom relays for any query:
"Show me the profile for npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8 using relay wss://relay.damus.io"
You can also specify the number of notes or zaps to fetch:
"Show me the latest 20 notes from npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8"
For anonymous zaps, you can include optional comments and specify the target type:
"Send an anonymous zap of 500 sats to note1abcdef... with the comment 'Great post!'"
"Send 1000 sats anonymously to nevent1qys... using relay wss://relay.damus.io"
For zap queries, you can enable extra validation and debugging:
"Show me all zaps for npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8 with validation and debug enabled"
Limitations
The server has a default 8-second timeout for queries to prevent hanging
When a tool expects a public key, both hex and npub formats are supported
Only a subset of relays is used by default
Implementation Details
Built with snstr - a lightweight, modern TypeScript library for Nostr protocol implementation
Native support for npub format using NIP-19 encoding/decoding
Relay authentication support for NIP-42 where relays require AUTH events
NIP-57 compliant zap receipt detection with direction-awareness (sent/received/self)
Advanced bolt11 invoice parsing with payment amount extraction
Smart caching system for improved performance with large volumes of zaps
Total sats calculations for sent/received/self zaps with net balance
Optional NIP-57 validation for ensuring zap receipt integrity
Anonymous zap support with lightning invoice generation
Support for zapping profiles, events (note IDs), and replaceable events (naddr)
Each tool call creates a fresh connection to the relays, ensuring reliable data retrieval
Comprehensive test suite with clean execution and proper resource cleanup
Anonymous Zaps
The sendAnonymousZap tool lets users send zaps without revealing their Nostr identity. Key points about anonymous zaps:
The zap will appear to come from an anonymous user in the recipient's wallet
The zap follows the NIP-57 protocol but without a sender signature
The recipient can still receive the payment and any included message
You can zap profiles (using npub/hex pubkey), specific events (using note/nevent/hex ID), or replaceable events (using naddr)
The server generates a lightning invoice for payment that you can copy into your Lightning wallet
Examples:
"Send an anonymous zap of 100 sats to npub1qny3tkh0acurzla8x3zy4nhrjz5zd8ne6dvrjehx9n9hr3lnj08qwuzwc8"
"Send 1000 sats anonymously to note1abcdef... with the comment 'Great post!'"The server fully validates LNURL services according to LNURL-pay (LUD-06) and Lightning Address (LUD-16) specifications, ensuring compatibility with various wallet implementations.
Troubleshooting
If queries time out, try increasing the
QUERY_TIMEOUTvalue in the source code (currently 8 seconds)If no data is found, try specifying different relays that might have the data
Check Claude's MCP logs for detailed error information
Default Relays
The server uses the following relays by default:
wss://relay.damus.io
wss://relay.nostr.band
wss://relay.primal.net
wss://nos.lol
wss://purplerelay.com
wss://nostr.land
Development
To modify or extend this server:
Edit the relevant file:
index.ts: Main server and tool registrationprofile/profile-tools.ts: Identity management, keypair generation, profile creation (Documentation)note/note-tools.ts: Note creation, signing, publishing, and reading functionality (Documentation)event/event-tools.ts: Generic event querying/creation/signing/publishingsocial/social-tools.ts: Follow/unfollow/reaction/repost/delete/reply flowsrelay/relay-tools.ts: Relay list (NIP-65) read/write and NIP-42 auth supportdm/dm-tools.ts: NIP-04 and NIP-44/NIP-17 direct message toolingzap/zap-tools.ts: Zap-related functionality (Documentation)utils/: Shared utility functionsconstants.ts: Global constants and relay configurationsconversion.ts: NIP-19 entity conversion utilities (hex/npub/nprofile/nevent/naddr)formatting.ts: Output formatting helperskeys.ts: Shared private key normalization and auth key helpersnip19-tools.ts: NIP-19 entity conversion and analysis toolspool.ts: Nostr connection pool managementephemeral-relay.ts: In-memory Nostr relay for testing
Run
bun run build(ornpm run build) to compile.Restart Claude for Desktop or Cursor to pick up your changes
Testing
We've implemented a comprehensive test suite using Bun's native test runner to test both basic functionality and integration with the Nostr protocol:
# Run all tests (using Bun - Recommended)
bun test
# Run a specific test file
bun test __tests__/basic.test.ts
# Run integration tests
bun test __tests__/integration.test.tsThe test suite includes:
Unit Tests
basic.test.ts- Tests simple profile formatting and zap receipt processingdm-tools.test.ts- Tests NIP-04/NIP-44 direct message encryption/decryption and message workflowsevent-tools.test.ts- Tests generic event query/create/sign/publish helpersprofile-notes-simple.test.ts- Tests profile and note data structuresprofile-tools.test.ts- Tests keypair generation, profile creation, and identity managementnote-creation.test.ts- Tests note creation, signing, and publishing workflowsnote-tools-functions.test.ts- Tests note formatting, creation, signing, and publishing functionsnote-tools-unit.test.ts- Unit tests for note formatting functionsprofile-postnote.test.ts- Tests authenticated note posting with existing private keysrelay-tools.test.ts- Tests relay list tooling (NIP-65) and authenticated relay interactionssocial-tools.test.ts- Tests follow/unfollow, reactions, reposts, deletes, and replieszap-tools-simple.test.ts- Tests zap processing and anonymous zap preparationzap-tools-tests.test.ts- Tests zap validation, parsing, and direction determinationnip19-conversion.test.ts- Tests NIP-19 entity conversion and analysis (28 test cases)nip42-auth.test.ts- Tests NIP-42 relay authentication flow and key handling
Integration Tests
integration.test.ts- Tests interaction with an ephemeral Nostr relay including:Publishing profile events
Creating and retrieving text notes
Publishing zap receipts
Filtering events
websocket-integration.test.ts- Tests WebSocket communication with a Nostr relay:Publishing events over WebSocket
Subscribing to events with filters
Managing multiple subscriptions
Closing subscriptions
Verifying that events with invalid signatures are rejected
Test Infrastructure
All integration tests use our
ephemeral-relay.tsimplementation—a fully functional in-memory Nostr relayTests use snstr for cryptographic event signing and verification
Clean test execution with proper resource cleanup and no console warnings
Automated WebSocket connection management with timeout handling
Isolated test environment requiring no external network connections
For more details about the test suite, see tests.
Codebase Organization
The codebase is organized into modules:
Core server setup in
index.tsSpecialized functionality in dedicated directories:
profile/: Identity management, keypair generation, and profile creationnote/: Note creation, signing, publishing, and reading functionalityevent/: Generic event query/create/sign/publish functionalitysocial/: Social interactions (follow/unfollow/reactions/reposts/deletes/replies)relay/: Relay list tooling and relay auth supportdm/: NIP-04 and NIP-44/NIP-17 direct messaging toolszap/: Zap handling and anonymous zapping
Common utilities in the
utils/directory
This modular structure makes the codebase more maintainable, reduces duplication, and enables easier feature extensions. For detailed information about each module's features and implementation, see their respective documentation.