Skip to content
VS Code

marketplace mcp for VS Code

io.github.llmops-pro/marketplace-mcp

Publish Nostr marketplace listings (NIP-15 + Shopstr kinds 30019/30402) so agents can run a store.

client:VS Code transport:stdio runtime:npm

Install marketplace mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nostr-relays",
      "description": "NOSTR_RELAYS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nostr-nip46-uri",
      "description": "NOSTR_NIP46_URI",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nostr-private-key",
      "description": "NOSTR_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shopstr-cache-enabled",
      "description": "SHOPSTR_CACHE_ENABLED",
      "password": true
    }
  ],
  "servers": {
    "marketplace-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "marketplace-mcp"
      ],
      "env": {
        "NOSTR_RELAYS": "${input:nostr-relays}",
        "NOSTR_NIP46_URI": "${input:nostr-nip46-uri}",
        "NOSTR_PRIVATE_KEY": "${input:nostr-private-key}",
        "SHOPSTR_CACHE_ENABLED": "${input:shopstr-cache-enabled}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

marketplace mcp in other clients