Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.vdappdev2/marketplace

NPM · @VERUSIDX/MARKETPLACE-MCP · SCANNED AUG 3

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

+24 this week 66 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability62
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 1278 tokens (~255/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @verusidx/marketplace-mcp

# add to Claude Code
claude mcp add vdappdev2-marketplace -- npx -y @verusidx/marketplace-mcp
# add to Codex CLI
codex mcp add vdappdev2-marketplace -- npx -y @verusidx/marketplace-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vdappdev2-marketplace": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@verusidx/marketplace-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add vdappdev2-marketplace --command npx --arg -y --arg @verusidx/marketplace-mcp
# ~/.hermes/config.yaml
mcp_servers:
  vdappdev2-marketplace:
    command: "npx"
    args: ["-y", "@verusidx/marketplace-mcp"]
// mcp.json
{
  "mcpServers": {
    "vdappdev2-marketplace": {
      "command": "npx",
      "args": [
        "-y",
        "@verusidx/marketplace-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +3
    • Stability: unverified → 0.23 functional
  • 2 Aug 26 +37
    • Provenance: fail → unverified security
    • Install scripts: pass → unverified security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • License: pass → unverified functional
    • Maintenance: pass → unverified functional
    • MCP protocol: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Schema quality: unverified → excellent functional
    • Licence: MIT functional
  • 1 Aug 26 +8
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Maintenance: unverified → pass functional
    • License: unverified → pass functional
    • Licence: MIT functional
  • 31 Jul 26 −6
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 42

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@verusidx/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 96 packages

96 packages in the resolved dependency tree · 96 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 5 exposed · ~1,278 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
closeoffers ~156

Close (cancel) open offers and reclaim the locked funds. Returns null on success. Always closes expired offers automatically, even if no parameters are given. When specific offer txids are provided, closes only those offers. Use this to cancel offers that are no longer wanted, or as periodic cleanup to reclaim funds from expired offers.

NameTypeReqDescription
chainstringyesChain to transact on (e.g., "VRSC", "vrsctest")
destinationstringTransparent or private address to send reclaimed funds to.
privatefundsdestinationstringPrivate (Sapling) address for native funds only.
txidsarrayArray of offer transaction IDs to close. If omitted, closes all expired offers.

No output schema declared.

No examples provided.

getoffers ~176

Get all open offers for a specific currency or identity. Returns both buy and sell offers — offers of the asset and offers for the asset. Use iscurrency to switch between currency offers and identity offers. Response keys are dynamic and generated by the daemon based on the queried asset — parse them dynamically. Use this to discover what's available on the market before making or taking offers.

NameTypeReqDescription
chainstringyesChain to query (e.g., "VRSC", "vrsctest")
currencyoridstringyesCurrency name/i-address or identity name/i-address to check for offers
iscurrencybooleanIf true, look for currency offers. If false (default), look for identity offers.
withtxbooleanIf true, include serialized hex of the exchange transaction for signing. Default: false.

No output schema declared.

No examples provided.

listopenoffers ~113

List open offers from the current wallet. Shows what this wallet has offered on-chain. Can filter by expired/unexpired status. Use this to check the status of offers the agent has created, or to find offers that need to be closed.

NameTypeReqDescription
chainstringyesChain to query (e.g., "VRSC", "vrsctest")
expiredbooleanInclude expired offers. Default: true.
unexpiredbooleanInclude unexpired (active) offers. Default: true.

No output schema declared.

No examples provided.

makeoffer ~426

Create a new on-chain atomic swap offer. Offers are fully decentralized — no intermediary, no escrow. The offer transaction locks the offered asset on-chain until the offer is taken, expires, or is closed. Supports currency-for-currency, currency-for-identity, identity-for-currency, and identity-for-identity swaps. For currency offers, use {"currency": "name", "amount": n}. For identity offers (without control tokens), use {"identity": "name@"} or a full identity definition. If an identity has a control token (flags: 5), offer/request the control token as a currency instead: {"currency": "idname.parent", "amount": 0.00000001}. Always include parent in identity definitions.

NameTypeReqDescription
chainstringyesChain to transact on (e.g., "VRSC", "vrsctest")
changeaddressstringyesTransparent address or VerusID ("ID@") for change.
expiryheightnumberBlock height at which this offer expires. Default: current height + 20 (~20 minutes). Set higher for marketplace listings.
feeamountnumberCustom fee amount. Default: 0.0001.
forobjectyesWhat to accept in return — {"currency": "name", "amount": n, "address": "dest"} for currency (address is REQUIRED — can be R-address, VerusID name@, or i-address), or full identity definition (with p…
fromaddressstringyesSource address for funds. If the user has not specified a preferred address, ask which address to use or if they prefer a wildcard ("*", "R*", "i*", or "z*" for private txs).
offerobjectyesWhat to offer — {"currency": "name", "amount": n} for currency, or {"identity": "name@"} / full identity definition for identity.
returntxbooleanIf true, return signed transaction hex instead of broadcasting. Default: false.

No output schema declared.

No examples provided.

takeoffer ~407

Accept an existing on-chain offer. Creates and posts a transaction that atomically executes the exchange — both sides swap in a single transaction, or neither does. The offer transaction must have at least 1 confirmation before it can be taken. Before taking, verify the offer hasn't expired by checking blockexpiry against current block height. deliver is what you give, accept is what you get. For currency: deliver {"currency": "name", "amount": n}, accept {"address": "addr", "currency": "name", "amount": n}. For identity: deliver "name@" (string), accept is full identity definition with parent. If the identity has a control token, use control token currency instead.

NameTypeReqDescription
acceptobjectyesWhat the taker receives — {"address": "addr", "currency": "name", "amount": n} (currency) or full identity definition (identity).
chainstringyesChain to transact on (e.g., "VRSC", "vrsctest")
changeaddressstringyesTransparent address or VerusID for change.
deliveryesWhat the taker delivers — "name@" (identity) or {"currency": "name", "amount": n} (currency).
feeamountnumberCustom fee amount. Default: 0.0001.
fromaddressstringyesSource address for funds. If the user has not specified a preferred address, ask which address to use or if they prefer a wildcard ("*", "R*", "i*", or "z*" for private txs).
returntxbooleanIf true, return signed transaction hex instead of broadcasting. Default: false.
txstringHex transaction to complete (from makeoffer with returntx=true). Either txid or tx is required.
txidstringTransaction ID of the offer to accept (from getoffers or makeoffer). Either txid or tx is required.

No output schema declared.

No examples provided.