npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@verusidx/marketplace-mcp

v0.1.7

Published

MCP server for Verus on-chain marketplace — create, browse, accept, and close offers

Readme

@verusidx/marketplace-mcp

MCP server for on-chain offers and trades on Verus. Supports identity swaps, currency offers, and decentralized atomic swaps — all four combinations: currency-for-currency, currency-for-identity, identity-for-currency, and identity-for-identity.

Setup

Prerequisite: @verusidx/chain-mcp must be configured and refresh_chains called at least once so the chain registry exists.

Add to your MCP client config (e.g., Claude Code claude_desktop_config.json):

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

Alternative: local install. If you prefer a pinned version or offline use, install into a project directory with npm install @verusidx/marketplace-mcp (or pnpm add / yarn add) and point your config at the local path instead of using npx.

Environment Variables

| Variable | Default | Description | |---|---|---| | VERUSIDX_READ_ONLY | false | Set to true to disable write tools. Read tools remain available. | | VERUSIDX_AUDIT_LOG | true | Set to false to disable audit logging of write operations. | | VERUSIDX_AUDIT_DIR | OS default | Custom directory for audit log files. |

Read-Only Mode

Set VERUSIDX_READ_ONLY=true to disable write tools. In read-only mode, 2 tools remain available:

  • getoffers — browse offers on the market
  • listopenoffers — list offers from the current wallet

Write tools (makeoffer, takeoffer, closeoffers) are not registered and won't appear in the tool list.

Tools

Always available (including read-only mode)

| Tool | Description | |---|---| | getoffers | Get all open offers for a specific currency or identity (buy and sell sides) | | listopenoffers | List open offers from the current wallet, with expired/unexpired filter |

Write tools (disabled in read-only mode)

| Tool | Description | |---|---| | makeoffer | Create a new on-chain atomic swap offer | | takeoffer | Accept an existing on-chain offer (atomic exchange) | | closeoffers | Close/cancel open offers and reclaim locked funds |

Offer Types

All four swap combinations are supported:

| Offer | For | Example | |---|---|---| | Currency | Currency | Sell 1 BTC for 5000 VRSC | | Currency | Identity | Offer 100 VRSC for an identity | | Identity | Currency | Sell an identity for 50 VRSC | | Identity | Identity | Swap two identities |

ID Control Tokens

Some identities have an associated control token (flags: 5 in getidentity). These identities cannot be offered or requested directly — instead, offer/request the control token as a currency: {"currency": "idname.parent", "amount": 0.00000001}. There is exactly 1 satoshi of each control token.

Spending Limits

On first run, marketplace-mcp creates a default spending-limits.json if one doesn't exist:

{
  "VRSC": 10
}

This caps any single makeoffer or takeoffer call at 10 VRSC. Edit the file to adjust limits. To remove all limits, set the file contents to {} (empty object). See the root README for file location and configuration details.

Audit Logging

All write operations are logged to date-stamped JSONL files in the audit directory. Each entry records the tool name, chain, parameters, result, and success status. Logs are append-only with 0600 permissions.

Requirements

  • Node.js >= 18.0.0
  • @verusidx/chain-mcp installed and refresh_chains called (chain registry must exist)
  • At least one Verus daemon running for RPC tools