io.github.vdappdev2/marketplace
NPM · @VERUSIDX/MARKETPLACE-MCP · SCANNED AUG 3
MCP server for Verus on-chain marketplace — create, browse, accept, and close offers
Available components
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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 84 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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
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
claude mcp add vdappdev2-marketplace -- npx -y @verusidx/marketplace-mcp
codex mcp add vdappdev2-marketplace -- npx -y @verusidx/marketplace-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"vdappdev2-marketplace": {
"type": "local",
"command": [
"npx",
"-y",
"@verusidx/marketplace-mcp"
],
"enabled": true
}
}
} openclaw mcp add vdappdev2-marketplace --command npx --arg -y --arg @verusidx/marketplace-mcp
mcp_servers:
vdappdev2-marketplace:
command: "npx"
args: ["-y", "@verusidx/marketplace-mcp"] {
"mcpServers": {
"vdappdev2-marketplace": {
"command": "npx",
"args": [
"-y",
"@verusidx/marketplace-mcp"
]
}
}
} 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.
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.
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.
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.
| Name | Type | Req | Description |
|---|---|---|---|
| chain | string | yes | Chain to transact on (e.g., "VRSC", "vrsctest") |
| destination | string | — | Transparent or private address to send reclaimed funds to. |
| privatefundsdestination | string | — | Private (Sapling) address for native funds only. |
| txids | array | — | Array 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.
| Name | Type | Req | Description |
|---|---|---|---|
| chain | string | yes | Chain to query (e.g., "VRSC", "vrsctest") |
| currencyorid | string | yes | Currency name/i-address or identity name/i-address to check for offers |
| iscurrency | boolean | — | If true, look for currency offers. If false (default), look for identity offers. |
| withtx | boolean | — | If 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.
| Name | Type | Req | Description |
|---|---|---|---|
| chain | string | yes | Chain to query (e.g., "VRSC", "vrsctest") |
| expired | boolean | — | Include expired offers. Default: true. |
| unexpired | boolean | — | Include 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.
| Name | Type | Req | Description |
|---|---|---|---|
| chain | string | yes | Chain to transact on (e.g., "VRSC", "vrsctest") |
| changeaddress | string | yes | Transparent address or VerusID ("ID@") for change. |
| expiryheight | number | — | Block height at which this offer expires. Default: current height + 20 (~20 minutes). Set higher for marketplace listings. |
| feeamount | number | — | Custom fee amount. Default: 0.0001. |
| for | object | yes | What 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… |
| fromaddress | string | yes | Source 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). |
| offer | object | yes | What to offer — {"currency": "name", "amount": n} for currency, or {"identity": "name@"} / full identity definition for identity. |
| returntx | boolean | — | If 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.
| Name | Type | Req | Description |
|---|---|---|---|
| accept | object | yes | What the taker receives — {"address": "addr", "currency": "name", "amount": n} (currency) or full identity definition (identity). |
| chain | string | yes | Chain to transact on (e.g., "VRSC", "vrsctest") |
| changeaddress | string | yes | Transparent address or VerusID for change. |
| deliver | — | yes | What the taker delivers — "name@" (identity) or {"currency": "name", "amount": n} (currency). |
| feeamount | number | — | Custom fee amount. Default: 0.0001. |
| fromaddress | string | yes | Source 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). |
| returntx | boolean | — | If true, return signed transaction hex instead of broadcasting. Default: false. |
| tx | string | — | Hex transaction to complete (from makeoffer with returntx=true). Either txid or tx is required. |
| txid | string | — | Transaction ID of the offer to accept (from getoffers or makeoffer). Either txid or tx is required. |
No output schema declared.
No examples provided.