# io.github.vdappdev2/address (npm · @verusidx/address-mcp)

MCP server for Verus addresses — generate, validate, list transparent and shielded addresses

- Trust score: 66/100 (medium)
- Change this week: +20
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@verusidx/address-mcp`: 66/100 (this document), [markdown](https://verifymcp.io/servers/vdappdev2-address/verusidx-address-mcp.md), [page](https://verifymcp.io/servers/vdappdev2-address/verusidx-address-mcp)

## Channel facts

- Registry: `npm`
- Package: `@verusidx/address-mcp`
- Version: `0.1.7`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 84 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 80/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 612 tokens (~102/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**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

### Claude

```bash
claude mcp add vdappdev2-address -- npx -y @verusidx/address-mcp
```

### Codex

```bash
codex mcp add vdappdev2-address -- npx -y @verusidx/address-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vdappdev2-address": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@verusidx/address-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add vdappdev2-address --command npx --arg -y --arg @verusidx/address-mcp
```

### Hermes

```yaml
mcp_servers:
  vdappdev2-address:
    command: "npx"
    args: ["-y", "@verusidx/address-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "vdappdev2-address": {
      "command": "npx",
      "args": [
        "-y",
        "@verusidx/address-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 66, +30)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-02 (score 36, +31)

- [security improvement] Malware scan: unverified → pass
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 5, −23)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 28, +4)

- [security regression] Malware scan: pass → unverified
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-28 (score 24, −22)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (6)

### `validateaddress` (~107 tokens)

Validate an address and return detailed information about it. Returns whether the address is valid, whether it belongs to this wallet (ismine), the address type, and associated metadata. Use this to verify addresses before sending funds, or to check if a given address is controlled by the local wallet.

Input parameters:

- `address` (string, required): The transparent address to validate (R-address or i-address)
- `chain` (string, required): Chain to query (e.g., "VRSC", "vrsctest")

### `z_validateaddress` (~143 tokens)

Validate a shielded (Sapling) z-address and return detailed information. Returns whether the address is valid, whether it belongs to this wallet (ismine), the address type, and key components (payingkey, transmissionkey, diversifier). Use this to verify z-addresses before sending funds or data, or to check if a z-address is controlled by the local wallet. Complements validateaddress, which only works for transparent (R/i) addresses.

Input parameters:

- `address` (string, required): The shielded z-address (zs1...) to validate
- `chain` (string, required): Chain to query (e.g., "VRSC", "vrsctest")

### `getaddressesbyaccount` (~111 tokens)

List all transparent addresses for an account. In Verus, the default account is "" (empty string). Returns an array of R-addresses associated with the account. Use this to see all transparent addresses the wallet has generated.

Input parameters:

- `account` (string): Account name. Use "" (empty string) for the default account. In Verus, all addresses typically belong to the default account.
- `chain` (string, required): Chain to query (e.g., "VRSC", "vrsctest")

### `z_listaddresses` (~100 tokens)

List all shielded (Sapling) addresses in the wallet. Returns an array of zs-addresses. Use this to see all shielded addresses available for private transactions, or to find an existing shielded address for use as an identity privateaddress.

Input parameters:

- `chain` (string, required): Chain to query (e.g., "VRSC", "vrsctest")
- `includeWatchonly` (boolean): Also include watchonly addresses. Default: false.

### `getnewaddress` (~77 tokens)

Generate a new transparent (R-address) for receiving payments. Use this to create fresh addresses for identity primaryaddresses, change addresses, or destination addresses. Each call generates a unique address from the wallet's keypool.

Input parameters:

- `chain` (string, required): Chain to generate address on (e.g., "VRSC", "vrsctest")

### `z_getnewaddress` (~74 tokens)

Generate a new shielded Sapling address (zs-address) for private transactions. Use this to create addresses for identity privateaddress fields or private sends. Each call generates a unique shielded address.

Input parameters:

- `chain` (string, required): Chain to generate address on (e.g., "VRSC", "vrsctest")

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/vdappdev2-address/verusidx-address-mcp#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 36
- 2026-08-01: 5
- 2026-07-31: 5
- 2026-07-30: 28
- 2026-07-28: 24
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@verusidx/address-mcp
- Socket report: https://socket.dev/npm/package/@verusidx/address-mcp
- Repository: https://github.com/vdappdev2/verusidx-mcp
- Changelog RSS feed: https://verifymcp.io/servers/vdappdev2-address/verusidx-address-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/vdappdev2-address/verusidx-address-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/vdappdev2-address/verusidx-address-mcp
