M
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

Marketplace Mcp

llmops-pro
🌐 Social Media
0 Views
0 Installs

πŸ“‡ 🏠 - Run a Shopstr / NOSTR marketplace storefront from an agent: create and update stalls and products in both the NIP-15 dialect (kind 30017/30018) and the Shopstr-modern dialect (kind 30019 shop + kind 30402 NIP-99 listings), including the Shopstr cache POST that makes cards actually render. 7 tools. npx -y marketplace-mcp.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "llmops-pro-marketplace-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "llmops-pro-marketplace-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

marketplace-mcp

A NOSTR storefront for your LLM agent β€” speaks both dialects. MCP server that lets an agent create + update marketplace events on your behalf, in two dialects out of the box:

  • NIP-15 (kind:30017 stalls + kind:30018 products) for NIP-15-native clients (Plebeian Market, etc.).
  • Shopstr-modern (kind:30019 shop profile + kind:30402 NIP-99 classified listings) β€” what shopstr.store actually renders. Includes an automatic cache-POST so events appear on the storefront, not just on relays.

Seven tools, defense-in-depth safety, MIT licensed.

v0.2 β€” dual-dialect publisher. v0.1.x shipped NIP-15-only and the listings never appeared on shopstr.store because Shopstr is a Postgres-backed CMS that only renders events from its own DB (populated via POST /api/db/cache-event) and its cacheable-event allowlist excludes NIP-15 kinds. v0.2 adds the Shopstr-modern tools and the cache-POST hook so the storefront actually populates. NIP-15 tools left in place for non-Shopstr targets.


Why this server exists

Shopstr (the canonical Bitcoin-Lightning marketplace UI on NOSTR) is not a relay-reading Nostr client β€” it's a Next.js app with a Postgres cache. Its marketplace page renders products from its own DB, populated when clients POST signed events to /api/db/cache-event. The cacheable-event allowlist (in shopstr-eng/shopstr β†’ utils/db/cache-event-policy.ts) excludes NIP-15 stall/product kinds; modern Shopstr uses kind:30019 (shop profile with merchants: [<pubkey>]) and kind:30402 (NIP-99 Classified Listings, all data in tags). Without a ["t","shopstr"] tag the listing won't surface; without at least one ["image",<url>] tag the card silently never renders.

marketplace-mcp v0.2 builds the right events, POSTs them to Shopstr's cache after the relay publish, and keeps the legacy NIP-15 tools intact for anyone targeting other clients.


What you can build with this

  • A self-driving Shopstr storefront β€” agent generates shop profile + product listings from a config file, republishes whenever metadata changes, drops fresh t-tag categories per product for discoverability. Same call publishes to relays AND mirrors to Shopstr's cache.
  • A sales-channel multiplexer β€” the same product events propagate to every NIP-15- or NIP-99-aware client (Shopstr, Plebeian Market, etc.) by virtue of being on shared relays. Pick your dialect per-tool; publish to both if your audience spans clients.
  • A listing-as-code workflow β€” version-control your product JSON in git; CI calls shopstr_create_or_update_product to deploy. Republish with the same id = idempotent update (parameterized-replaceable events).
  • Cross-server identity β€” pair with nostr-ops-mcp and nwc-mcp to wire identity + commerce. Same signer, same npub, three specialized tool surfaces.

The seven tools

Shopstr-modern (new in v0.2) β€” required for shopstr.store visibility

ToolKindPurpose
shopstr_create_or_update_shop30019Publish the seller's shop profile (name, about, picture, banner). The d tag is the seller's pubkey hex β€” one shop per pubkey. After relay publish, POSTs to Shopstr's cache so the storefront UI surfaces the shop.
shopstr_create_or_update_product30402Publish a NIP-99 Classified Listing. All product data in tags (title, summary, price, location, shipping, image Γ— N, t Γ— N, quantity, condition, status, valid_until). Auto-adds ["t","shopstr"] so the product surfaces in Shopstr's marketplace feed. Cache-POST included.

NIP-15 legacy β€” for NIP-15-native clients (not Shopstr)

ToolKindPurpose
marketplace_create_or_update_stall30017NIP-15 stall (id, name, description, currency, shipping[]). The id is the d tag β€” same id = replace. Relay publish only; no Shopstr cache POST (would be 400'd anyway, kind not allowlisted).
marketplace_create_or_update_product30018NIP-15 product (stall_id, name, description, images, price, quantity, specs, shipping, categories). Relay publish only.

Common

ToolKindPurpose
marketplace_list_my_stallsβ€”Fetch + parse your own NIP-15 stalls. Returns event id, created_at, d tag, parsed JSON.
marketplace_list_my_productsβ€”Same for NIP-15 products. Optional stall_id filter (client-side; relays don't index JSON content).
marketplace_confirm_publishβ€”Two-step confirm dispatcher. Routes by tool name so Shopstr-modern publishes re-attach the cache-POST hook automatically.

Requirements

  • Node 20+
  • A NOSTR signer β€” strongly preferred: a NIP-46 bunker URI from Amber, nsec.app, or any NIP-46 implementation. Dev path: raw nsec in .env.
  • Relays your audience reads from. Sensible defaults in .env.example (relay.damus.io, nos.lol, relay.nostr.band, relay.primal.net).
  • For Shopstr-modern publishes: outbound HTTPS to shopstr.store (or your own Shopstr deployment).

Install

# From npm
npx -y marketplace-mcp

# From source
git clone <repo>
cd marketplace-mcp
corepack enable pnpm
pnpm install
pnpm build

Configure

cp .env.example .env
# edit .env: set NOSTR_NIP46_URI OR NOSTR_PRIVATE_KEY
#           set NOSTR_RELAYS (comma-separated wss://)
#           set SHOPSTR_CACHE_ENABLED=true (default) for shopstr.store visibility

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.

Required

VarPurpose
NOSTR_RELAYSComma-separated wss:// relays. Server refuses to start if empty.

Signer β€” provide AT MOST one (without a signer the server runs read-only)

VarPurpose
NOSTR_NIP46_URIbunker://... URI. Recommended. Pair with Amber (Android) or nsec.app (web).
NOSTR_PRIVATE_KEYRaw nsec1.... Dev/legacy only. Server warns at startup.

Shopstr cache mirror (new in v0.2)

shopstr.store reads from its own Postgres DB, not from open relays. After kind:30019/30402 events publish to relays, the server POSTs them to the configured cache URL so the storefront surfaces them. Failures are logged in the audit log but never roll back the relay publish (a Nostr event already broadcast can't be rolled back anyway).

VarDefaultPurpose
SHOPSTR_CACHE_ENABLEDunset (false) β€” set true in .env to enableControls whether the cache POST runs at all.
SHOPSTR_CACHE_URLhttps://shopstr.store/api/db/cache-eventOverride to mirror to a self-hosted Shopstr deployment.

The NIP-15 tools (kind:30017/30018) ignore these β€” those kinds aren't on Shopstr's cacheable allowlist anyway.

Optional safety knobs

VarDefaultPurpose
NOSTR_READ_ONLYfalseDisables all publish tools (list_my_* still work).
NOSTR_REQUIRE_CONFIRMfalseTwo-step confirm β€” create/update returns a token; marketplace_confirm_publish actually broadcasts.
NOSTR_MAX_EVENTS_PER_MINUTE10Rolling 60s rate limit on publishes.
NOSTR_LOG_PATH./marketplace-mcp.logServer log.
NOSTR_AUDIT_PATH./marketplace-mcp-audit.logAppend-only JSON-line audit log.

Quickstart: publish your first storefront on shopstr.store

1. agent: shopstr_create_or_update_shop({
     name: "My Shop",
     about: "Hand-crafted MCP servers and other Lightning-priced goods.",
     picture: "https://example.com/avatar.png",
     banner: "https://example.com/banner.png"
   })
   β†’ returns { event_id, kind: 30019, relays_accepted: [...],
                after_publish: { shopstr_cache: { ok: true, status: 200 } } }

2. agent: shopstr_create_or_update_product({
     id: "some-product",
     name: "Some Product",
     summary: "Long-form description goes here. Becomes the event `content`.",
     price: 50000,
     currency: "sat",
     location: "online",
     shipping_option: "Free",
     shipping_cost: 0,
     images: ["https://example.com/card.jpg"],   // REQUIRED β€” Shopstr drops cards with zero images
     categories: ["software", "lightning", "mcp"]
   })
   β†’ returns { event_id, kind: 30402, relays_accepted: [...],
                after_publish: { shopstr_cache: { ok: true, status: 200 } } }

Visit https://shopstr.store/marketplace/<your-npub> to see your storefront. (If you've registered a Shopstr profile slug for your npub, the URL canonicalises to /marketplace/<your-slug>.) Browsers buy through Shopstr's invoice-generation flow β†’ sats land in the Lightning wallet linked to your Shopstr profile.

NIP-15 alternative (for non-Shopstr clients)

If you're targeting NIP-15-native clients instead of (or in addition to) Shopstr, the legacy tools still work:

agent: marketplace_create_or_update_stall({
  id: "my-shop", name: "My Shop",
  shipping: [{ id: "digital", name: "Digital", cost: 0 }]
})
agent: marketplace_create_or_update_product({
  id: "p1", stall_id: "my-shop", name: "Some Product",
  price: 50000, currency: "sat",
  shipping: [{ id: "digital", cost: 0 }]
})

You can publish both dialects for the same product to maximise client coverage; they don't collide.


Wire into an MCP client

{
  "mcpServers": {
    "marketplace": {
      "command": "npx",
      "args": ["-y", "marketplace-mcp"],
      "env": {}
    }
  }
}

Same .env-via-binary-dir pattern as the rest of the substrate β€” leave the env block empty in client config; secrets stay in marketplace-mcp/.env.


Safety model

The publish pipeline runs in this order, for both NIP-15 and Shopstr-modern tools:

  1. NOSTR_READ_ONLY gate.
  2. Signer presence β€” refuse if no signer.
  3. RateLimiter β€” rolling events bucket (NOSTR_MAX_EVENTS_PER_MINUTE).
  4. Confirm gate β€” if NOSTR_REQUIRE_CONFIRM=true, returns a token; marketplace_confirm_publish executes. The confirm dispatcher routes by tool name so Shopstr-modern publishes re-attach their cache-POST hook automatically.
  5. Sign + publish via NDK.
  6. afterPublish hook (Shopstr-modern only) β€” POST the signed event to SHOPSTR_CACHE_URL. Failures logged in audit (after_publish.shopstr_cache.{ok, status, error}) but never roll back the relay publish.
  7. Audit log entry.

KindAllowlist is omitted because the kinds (30017/30018/30019/30402) are hard-coded in the tool implementations β€” there's no agent-supplied kind to validate.

If you want stricter behavior, pair with nostr-ops-mcp and use its kind allowlist on the same npub β€” but most users find that overhead unnecessary for a single-purpose marketplace server.


Testing

pnpm typecheck
pnpm test        # 19 vitest cases (NIP-15 builders/parsers + Shopstr-modern builders/parsers + roundtrips)
pnpm build       # ~37 KB ESM bundle

Companion servers

  • nwc-mcp β€” Lightning wallet. The "payment" side of selling.
  • nostr-ops-mcp β€” General NOSTR primitives. The marketplace MCP is the specialized cousin; nostr-ops-mcp is the generalist.
  • albyhub-admin-mcp β€” Hub-level admin via Alby Hub's HTTP API. The other half of the wallet story (NWC handles payments, this handles node/channel/sub-wallet ops).

License

MIT β€” see LICENSE.

Contact / Issues

Built by LLMOps.Pro.

  • NOSTR: npub1hdg932jvwc3jdvkqywgqv0ue4nn60exrf92asy8mtazt3hjg7d2s2yw0nw β€” follow, DM, zap.
  • Lightning Address: sovereigncitizens@getalby.com β€” for support zaps and "this was useful" tips.
  • Bug reports / feature requests: open a GitHub issue (link forthcoming).
  • Security issues: please disclose privately via NOSTR DM before opening a public issue.

Related MCP Servers

S
Substack Ops

🐍 🏠 - Substack with zero AI API keys. 26 tools (posts, notes, comments, replies, reactions, restacks). Host LLM drafts via proposereply β†’ confirmreply tokens. SQLite dedup, JSONL audit, dry-run default. Install: uvx substack-ops mcp install cursor.

🌐 Social Media0 views
L
Linkedin Mcp Server

πŸ“‡ 🏠 - Local LinkedIn MCP server for posting to LinkedIn from Claude. 9 tools β€” create/edit/delete posts (text, image, article), upload images, fetch profile, look up company pages, and check follower counts. Uses the official LinkedIn REST API with OAuth 2.0 (wmembersocial, OIDC).

🌐 Social Media0 views
Y
Youtube Uploader Mcp

🏎️ ☁️ - AI‑powered YouTube uploaderβ€”no CLI, no YouTube Studio. Uploade videos directly from MCP clients with all AI capabilities.

🌐 Social Media0 views
I
Insta Mcp

πŸ“‡ 🏠 - Instagram MCP server for analytics and insights. Get account overviews, posts, followers, following lists, post insights, and search for users, hashtags, or places.

🌐 Social Media0 views
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.