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

io.github.zkp2p/peer-cash

NPM · PEER-CASH-MCP · SCANNED AUG 20

MCP server for preparing and tracking Peer Cash Base USDC cash-outs

Available components

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 Security99
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 36 of 157 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability75
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 523 tokens (~58/item across 9 items; 9 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage77
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 31% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

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 · peer-cash-mcp

# add to Claude Code
claude mcp add zkp2p-peer-cash -- npx -y peer-cash-mcp
# add to Codex CLI
codex mcp add zkp2p-peer-cash -- npx -y peer-cash-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "zkp2p-peer-cash": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "peer-cash-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add zkp2p-peer-cash --command npx --arg -y --arg peer-cash-mcp
# ~/.hermes/config.yaml
mcp_servers:
  zkp2p-peer-cash:
    command: "npx"
    args: ["-y", "peer-cash-mcp"]
// mcp.json
{
  "mcpServers": {
    "zkp2p-peer-cash": {
      "command": "npx",
      "args": [
        "-y",
        "peer-cash-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.

  • 15 Aug 26 +25
    • Malware scan: unverified → pass security
    • Known CVEs: unverified → pass security
    • Dependency health: unverified → 0.90 functional
  • 14 Aug 26 41

    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 20 Aug 2026 · Analysed npm/peer-cash-mcp@0.1.2

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 157 packages
Packages resolved 157
Stale 35
No linked repository 1
Tree resolution Complete
MCP tools · 9 exposed · ~523 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
peer_cash_capabilities ~63

Return the live Base USDC destination, payout platforms, fiat currencies, payee hints, amount bounds, and pricing model. Call this before naming a rail or currency.

NameTypeReqDescription
includeRelaySourcesbooleanInclude live Relay-supported EVM source chains and tokens

No output schema declared.

No examples provided.

peer_cash_estimate ~84

Estimate fiat received for Base USDC at the live Chainlink oracle rate. This is not a locked quote; the binding rate resolves when a buyer fills.

NameTypeReqDescription
amountstringyesBase USDC amount in 6-decimal base units
currencystringyesFiat currency from capabilities
platformstringOptional payout platform for corridor fill timing

No output schema declared.

No examples provided.

peer_cash_finalize ~49

Read a confirmed Base createDeposit receipt and resolve the resumable Peer deposit id. Call only after the host confirms the createDeposit transaction returned by peer_cash_prepare.

NameTypeReqDescription
transactionHashstringyes

No output schema declared.

No examples provided.

peer_cash_order ~57

Return one order state, amounts, fills, and next actions from its deposit id. Brief ORDER_NOT_FOUND responses after finalization may be indexer lag; retry this read, never the deposit transaction.

NameTypeReqDescription
depositIdstringyes

No output schema declared.

No examples provided.

peer_cash_orders ~48

List orders owned by a maker wallet, optionally limited to orders that still need attention.

NameTypeReqDescription
inFlightboolean
limitinteger
ownerstringyes

No output schema declared.

No examples provided.

peer_cash_prepare ~68

Prepare unsigned Base USDC approval and createDeposit transactions. The MCP server never accepts a private key or submits a transaction. Show the plan and obtain explicit approval before host-side signing.

NameTypeReqDescription
amountstringyesBase USDC amount in 6-decimal base units
receiveyes

No output schema declared.

No examples provided.

peer_cash_prepare_access_policy ~56

Prepare the unsigned verified-buyer access-policy transaction required for Venmo, Cash App, or PayPal orders. Use only after finalization when peer_cash_prepare returned accessPolicyRequired=true.

NameTypeReqDescription
depositIdstringyes

No output schema declared.

No examples provided.

peer_cash_prepare_top_up ~43

Prepare unsigned approval and addFunds transactions to add Base USDC to a live order.

NameTypeReqDescription
amountstringyes
depositIdstringyes

No output schema declared.

No examples provided.

peer_cash_prepare_withdraw ~55

Prepare unsigned transactions to withdraw unmatched funds. Omit amount to close the order; pass a Base USDC base-unit amount for a partial withdrawal.

NameTypeReqDescription
amountstring
depositIdstringyes

No output schema declared.

No examples provided.