The Nostr MCP Server is a Model Context Protocol (MCP) server that enables Nostr capabilities for large language models (LLMs) like Claude. It provides tools for interacting with the Nostr network, allowing users to fetch profiles, notes, and zaps directly through Claude.
The server implements six tools for interacting with the Nostr network:
1. getProfile
: Fetches a user's profile information by public key.
2. getKind1Notes
: Fetches text notes (kind 1) authored by a user.
3. getLongFormNotes
: Fetches long-form content (kind 30023) authored by a user.
4. getReceivedZaps
: Fetches zaps received by a user, including detailed payment information.
5. getSentZaps
: Fetches zaps sent by a user, including detailed payment information.
6. getAllZaps
: Fetches both sent and received zaps for a user, clearly labeled with direction and totals.
All tools support both hex public keys and npub format, with user-friendly display of Nostr identifiers.
To install the Nostr MCP Server:
# 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 build
shell
vim ~/Library/Application\ Support/Claude/claude_desktop_config.json
shell
notepad %AppData%\Claude\claude_desktop_config.json
json
{
"mcpServers": {
"nostr": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/nostr-mcp-server/build/index.js"]
}
}
}
/ABSOLUTE/PATH/TO/
with the actual path to your project.Once configured, you can ask Claude to use the Nostr tools with requests like:
- "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"
QUERY_TIMEOUT
value in the source code if queries time out.The server uses the following relays by default:
- wss://relay.damus.io
- wss://relay.nostr.band
- wss://relay.primal.net
- wss://nos.lol
- wss://relay.current.fyi
- wss://nostr.bitcoiner.social
To modify or extend this server:
1. Edit the index.ts
file in the project root.
2. Run npm run build
to compile.
3. Restart Claude for Desktop to pick up your changes.
A Model Context Protocol (MCP) server that provides Nostr capabilities to LLMs like Claude.