# io.github.reagost/nerve-rpc (npm · nerve-rpc-mcp)

MCP server for Nerve blockchain JSON-RPC & REST API for AI Agents

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

## Components

- npm · `nerve-rpc-mcp`: 67/100 (this document), [markdown](https://verifymcp.io/servers/reagost-nerve-rpc/nerve-rpc-mcp.md), [page](https://verifymcp.io/servers/reagost-nerve-rpc/nerve-rpc-mcp)

## Channel facts

- Registry: `npm`
- Package: `nerve-rpc-mcp`
- Version: `1.0.2`
- 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 (95 of 99), 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 (95 of 99), 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 148 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 825 tokens (~58/item across 14 items; 14 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 99/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 96% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add reagost-nerve-rpc -- npx -y nerve-rpc-mcp
```

### Codex

```bash
codex mcp add reagost-nerve-rpc -- npx -y nerve-rpc-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "reagost-nerve-rpc": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "nerve-rpc-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add reagost-nerve-rpc --command npx --arg -y --arg nerve-rpc-mcp
```

### Hermes

```yaml
mcp_servers:
  reagost-nerve-rpc:
    command: "npx"
    args: ["-y", "nerve-rpc-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "reagost-nerve-rpc": {
      "command": "npx",
      "args": [
        "-y",
        "nerve-rpc-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 67, +4)

- [functional improvement] Stability: unverified → 0.23

### 2026-08-02 (score 63, +42)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Security disclosure: fail → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-07-31 (score 21, −25)

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

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

First indexed and scored.

## MCP tools (14)

### `nerve_info` (~30 tokens)

Get Nerve chain info (chainId, assetId, symbol, addressPrefix, consensus assets, etc.)

### `nerve_get_latest_height` (~42 tokens)

Get the latest main chain block height for a chain

Input parameters:

- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)

### `nerve_get_best_block_header` (~50 tokens)

Get the latest block header (hash, height, txCount, packingAddress, etc.)

Input parameters:

- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)

### `nerve_validate_address` (~53 tokens)

Validate if a Nerve address is correct for the given chain

Input parameters:

- `address` (string, required): Nerve address
- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)

### `nerve_get_account_balance` (~83 tokens)

Query account balance for a specific asset (chainId, assetChainId, assetId, address)

Input parameters:

- `address` (string, required): Nerve address
- `assetChainId` (integer, required): Asset chain ID
- `assetId` (integer, required): Asset ID
- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)

### `nerve_get_balance_list` (~70 tokens)

Query balance list for an address and optional asset IDs

Input parameters:

- `address` (string, required): Nerve address
- `assetIdList` (array): Optional list of asset IDs; omit for all
- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)

### `nerve_get_block_by_height` (~52 tokens)

Get block (header + transactions) by block height

Input parameters:

- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)
- `height` (integer, required): Block height

### `nerve_get_block_by_hash` (~54 tokens)

Get block (header + transactions) by block hash

Input parameters:

- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)
- `hash` (string, required): Transaction or block hash

### `nerve_get_header_by_height` (~48 tokens)

Get block header only by height

Input parameters:

- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)
- `height` (integer, required): Block height

### `nerve_get_tx` (~47 tokens)

Get transaction by transaction hash

Input parameters:

- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)
- `hash` (string, required): Transaction or block hash

### `nerve_get_agent_list` (~43 tokens)

Get list of consensus nodes (agents) for the chain

Input parameters:

- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)

### `nerve_get_deposit_list` (~59 tokens)

Get delegation list for a consensus node (by agent creation tx hash)

Input parameters:

- `agentHash` (string, required): Create consensus node transaction hash
- `chainId` (integer, required): Nerve chain ID (e.g. 9 for mainnet)

### `nerve_jsonrpc` (~86 tokens)

Call any Nerve JSON-RPC method by name with params array. Use for methods not covered by dedicated tools (e.g. getRandomSeedByCount, getProposalInfo, swap/farm APIs).

Input parameters:

- `method` (string, required): JSON-RPC method name (e.g. info, getTx, getSwapPairInfo)
- `params` (array): Array of positional parameters

### `nerve_rest` (~108 tokens)

Call Nerve REST API by path. Method GET by default; pass body for POST. Base URL is from NERVE_API_BASE_URL (default https://api.nerve.network). Example paths: api/info, api/block/header/height/1000, api/tx/{hash}

Input parameters:

- `body` (object): JSON body for POST/PUT
- `method` (string)
- `path` (string, required): REST path (e.g. api/info or api/block/height/123)

## Diagnostics

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

## Score history

- 2026-08-03: 67
- 2026-08-02: 63
- 2026-08-01: 21
- 2026-07-31: 21
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/nerve-rpc-mcp
- Socket report: https://socket.dev/npm/package/nerve-rpc-mcp
- Repository: https://github.com/NerveNetwork/nerve-agent
- Changelog RSS feed: https://verifymcp.io/servers/reagost-nerve-rpc/nerve-rpc-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/reagost-nerve-rpc/nerve-rpc-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/reagost-nerve-rpc/nerve-rpc-mcp
