Nostr publishing, queries, and DMs for AI agents, with allowlists, rate limits, and an audit log.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A NOSTR identity for your LLM agent. MCP server that exposes NOSTR protocol primitives β sign, publish, query, NIP-19 encode/decode, NIP-05 lookup, encrypted DMs β as tools your agent can call. Drop it into Claude Desktop, Claude Code, Cursor, or any MCP-speaking client. Hand the agent a NIP-46 bunker key (not a raw nsec). Set a kind allowlist. Let it post on your behalf within rails you control.
v0.1 β full read + write + DM surface. 16 tools wrapped in a defense-in-depth safety stack: kind allowlist (deny-by-default), recipient allowlist, rate limits, optional two-step confirmation, structured audit log. Supports both nsec (dev) and NIP-46 bunker (production).
marketplace-mcp to publish NIP-15 stalls + products as the same identity.nostr_publish_metadata for kind:0 (always demands confirmation β overwriting your profile is irreversible without older relay data).nostr_list_dms), decrypts orders, and replies via nostr_send_dm. Default-off behind NOSTR_DM_TOOLS_ENABLED.nostr-ops-mcp and marketplace-mcp. One key, one identity, two specialized tool surfaces.The safety stack is the load-bearing reason this is usable in production: an agent with the keys to publish as you can ruin your reputation in seconds if unconstrained. The server enforces what kinds it'll sign, what rate, optional second-step confirmation, and writes every call to a structured audit log.
| Tool | Purpose |
|---|---|
nostr_decode | Parse NIP-19 strings (npub / nsec / note / nevent / naddr / nprofile). nsec decoding gated behind NOSTR_ALLOW_NSEC_DECODE=true. |
nostr_encode | Build NIP-19 strings from raw fields. nsec encoding deliberately not supported. |
| Tool | Purpose |
|---|---|
nostr_get_pubkey | Returns the signer's pubkey + npub. Errors clearly if no signer configured. |
nostr_list_relays | Configured relay pool + each relay's connection status. |
nostr_query_events | The workhorse. NIP-01 filters: kinds, authors, e_tag / p_tag / d_tag / t_tag tag filters (mapped to NIP-01 #e/#p/#d/#t internally β renamed in v0.2.0 for hosted-API schema compatibility), since / until / limit. |
nostr_get_profile | Fetch + parse kind:0 metadata for a pubkey or npub. Returns the parsed JSON content (name, about, picture, nip05, lud16, β¦). |
nostr_verify_nip05 | Resolve name@domain β pubkey via /.well-known/nostr.json. Optional expected_pubkey for verification mode. |
| Tool | Purpose |
|---|---|
nostr_publish_event | The primitive write tool. Pass kind / content / tags. |
nostr_publish_text_note | Convenience for kind:1. Reply/mention/hashtag shortcuts auto-assemble into NIP-10 tags. |
nostr_publish_metadata | Kind:0 profile. Always demands two-step confirmation regardless of NOSTR_REQUIRE_CONFIRM β overwriting your profile is hard to reason about. |
nostr_publish_addressable_event | Kinds 30000β39999 (replaceable). Sets the d tag automatically. The bridge marketplace-mcp uses for NIP-15. |
nostr_delete_event | NIP-09 kind:5 soft delete. Best-effort β relays may ignore. |
nostr_confirm_publish | Execute a token-gated publish. Single-use; safety pipeline re-runs. |
NOSTR_DM_TOOLS_ENABLED=true)| Tool | Purpose |
|---|---|
nostr_send_dm | NIP-04 (kind:4) DM with NIP-44 encryption by default; NIP-04 supported for legacy compat. Gated by NOSTR_DM_ALLOWLIST. |
nostr_list_dms | Fetch + decrypt the thread with a counterparty. Auto-detects NIP-44 vs NIP-04 per event. |
nostr_decrypt_dm | Decrypt a single ciphertext (when you already have the event from elsewhere). |
NIP-17 sealed/gift-wrapped DMs are not yet supported β deferred to a future v0.2 (rumor events + gift-wrapping add nontrivial complexity).
.env. The server logs a stderr warning at startup when nsec-on-disk is detected.The server auto-loads .env from this binary's own directory (next to dist/) β deliberately NOT from cwd, to avoid env-var collision when multiple MCP servers run in the same Claude Code session.
| Var | Purpose |
|---|---|
NOSTR_RELAYS | Comma-separated wss:// relays. Server refuses to start if empty. |
NOSTR_ALLOWED_KINDS | Comma-separated event-kind numbers the server may sign. Required when a signer is configured. Example: 1,30017,30018 for text-note + NIP-15 marketplace. Default omits kind:0 (profile) and kind:5 (delete) β both easy to misuse. |
| Var | Purpose |
|---|---|
NOSTR_NIP46_URI | bunker://<pubkey>?relay=...&secret=... from Amber / nsec.app / Alby Account / any NIP-46 bunker. Recommended. |
NOSTR_PRIVATE_KEY | Raw nsec1.... Dev/legacy only. Server warns at startup. |
| Var | Default | Purpose |
|---|---|---|
NOSTR_READ_ONLY | false | Force read-only β disables all write tools. |
NOSTR_DM_TOOLS_ENABLED | false | Opt-in for send_dm / list_dms / decrypt_dm. |
NOSTR_DM_ALLOWLIST | unset | Hex pubkeys allowed as DM recipients. Empty = NOSTR_DM_TOOLS_ENABLED alone gates. |
NOSTR_REQUIRE_CONFIRM | false | Two-step confirm: write tools return a token, nostr_confirm_publish executes. |
NOSTR_MAX_EVENTS_PER_MINUTE | 10 | Rolling 60s rate limit on writes. |
NOSTR_MAX_DMS_PER_MINUTE | 5 | Same but for DMs. |
NOSTR_ALLOW_NSEC_DECODE | false | Allow nostr_decode to return raw private key material. Don't enable unless you really need it. |
NOSTR_LOG_PATH | ./nostr-mcp.log | Server log path. |
NOSTR_AUDIT_PATH | ./nostr-mcp-audit.log | Structured audit log (one JSON line per tool call). |
Because the server loads its own .env, leave the env block empty in the client config β keep secrets out of any committed file.
Every write tool runs the pipeline in this order:
NOSTR_READ_ONLY gate β refuse outright.NOSTR_ALLOWED_KINDS.events bucket is full.NOSTR_REQUIRE_CONFIRM=true (or the tool always-confirms, like publish_metadata), return a 16-byte hex token instead of signing.DM tools add three more checks on top: NOSTR_DM_TOOLS_ENABLED, DmAllowlist (per-recipient), and a separate dms rate bucket.
The floor is your signer. If using NIP-46, the bunker can refuse any sign request β that's the strongest safety boundary. This server's checks are belt-and-suspenders on top.
Successful publish: {"ts":"...","tool":"nostr_publish_text_note","outcome":"ok","result":{"event_id":"...","relays_accepted":[...]}}. Blocked / error lines are equally structured. The audit log is append-only by intent β rotate it as part of your operational hygiene.
For end-to-end testing against live relays, configure a throwaway nsec + a couple of public relays (damus.io, nos.lol) and run a small loop: nostr_publish_text_note β nostr_query_events to confirm the note round-tripped. The nostr_send_dm β nostr_list_dms loop validates the DM path (you can DM yourself for a closed-loop check).
nwc-mcp β Lightning wallet over NWC. Pair these to build sats-spending NOSTR agents.marketplace-mcp β NIP-15 marketplace publish (Shopstr-compatible). Uses the same signer setup as this server.MIT β see LICENSE.
Built by LLMOps.Pro.
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/nostr-ops-mcp)<a href="https://allmcps.com/mcp/nostr-ops-mcp"><img src="https://allmcps.com/api/badge/nostr-ops-mcp?style=directory" alt="Nostr Ops MCP on AllMCPs" /></a>