# io.github.rog0x/crypto (npm · @rog0x/mcp-crypto-tools)

Hash, encode, UUID, password analysis for AI agents

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

## Components

- npm · `@rog0x/mcp-crypto-tools`: 67/100 (this document), [markdown](https://verifymcp.io/servers/rog0x-crypto/rog0x-mcp-crypto-tools.md), [page](https://verifymcp.io/servers/rog0x-crypto/rog0x-mcp-crypto-tools)

## Channel facts

- Registry: `npm`
- Package: `@rog0x/mcp-crypto-tools`
- 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**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), 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 133 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 68/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 673 tokens (~134/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params.
  - 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**: 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.

## Install

### Claude

```bash
claude mcp add rog0x-crypto -- npx -y @rog0x/mcp-crypto-tools
```

### Codex

```bash
codex mcp add rog0x-crypto -- npx -y @rog0x/mcp-crypto-tools
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add rog0x-crypto --command npx --arg -y --arg @rog0x/mcp-crypto-tools
```

### Hermes

```yaml
mcp_servers:
  rog0x-crypto:
    command: "npx"
    args: ["-y", "@rog0x/mcp-crypto-tools"]
```

### Other

```json
{
  "mcpServers": {
    "rog0x-crypto": {
      "command": "npx",
      "args": [
        "-y",
        "@rog0x/mcp-crypto-tools"
      ]
    }
  }
}
```

## 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, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 66, +46)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.20
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-07-31 (score 20, −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 45)

First indexed and scored.

## MCP tools (5)

### `hash` (~175 tokens)

Hash text using MD5, SHA-1, SHA-256, SHA-512, or HMAC. Can also compare two hash values or compute all hash algorithms at once.

Input parameters:

- `action` (string, required): Action to perform: hash (single algorithm), hmac (keyed hash), compare (compare two hashes), hash_all (all algorithms at once)
- `algorithm` (string): Hash algorithm (for hash and hmac actions). Default: sha256
- `encoding` (string): Output encoding. Default: hex
- `hash1` (string): First hash (for compare action)
- `hash2` (string): Second hash (for compare action)
- `key` (string): Secret key (for hmac action)
- `text` (string): Text to hash (for hash, hmac, hash_all actions)

### `encode_decode` (~67 tokens)

Encode or decode text using Base64, URL encoding, HTML entities, hex, or binary. Can also auto-detect the encoding format of input.

Input parameters:

- `action` (string, required): Encoding/decoding action to perform
- `text` (string, required): Text to encode, decode, or detect

### `generate_id` (~134 tokens)

Generate unique identifiers: UUID v4, nanoid, ULID, CUID, or random strings with configurable length and charset.

Input parameters:

- `charset` (string): Charset for random strings: alphanumeric, alpha, numeric, hex, lowercase, uppercase, symbols, all, or a custom string of characters. Default: alphanumeric
- `count` (number): Number of IDs to generate (max 100). Default: 1
- `length` (number): Length for nanoid or random string. Default: 21 for nanoid, 16 for random
- `type` (string, required): Type of ID to generate

### `password` (~181 tokens)

Generate secure passwords with configurable options, or check password strength with entropy calculation and crack time estimation.

Input parameters:

- `action` (string, required): Action: generate a password or check strength of an existing one
- `count` (number): Number of passwords to generate (max 100). Default: 1
- `digits` (boolean): Include digits. Default: true
- `exclude_ambiguous` (boolean): Exclude ambiguous characters (0, O, l, I, 1). Default: false
- `length` (number): Password length (for generate). Default: 16
- `lowercase` (boolean): Include lowercase letters. Default: true
- `password` (string): Password to check (for check_strength action)
- `symbols` (boolean): Include symbols. Default: true
- `uppercase` (boolean): Include uppercase letters. Default: true

### `jwt` (~116 tokens)

Decode JWT tokens to inspect header and payload, check expiry status, or create unsigned JWTs for testing purposes. Not for production authentication.

Input parameters:

- `action` (string, required): Action: decode (full decode), check_expiry (just expiry info), create_unsigned (create test token)
- `expires_in_seconds` (number): Expiration time in seconds from now (for create_unsigned)
- `payload` (object): Payload object for creating unsigned JWT (for create_unsigned)
- `token` (string): JWT token string (for decode and check_expiry)

## Diagnostics

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

## Score history

- 2026-08-03: 67
- 2026-08-02: 66
- 2026-08-01: 20
- 2026-07-31: 20
- 2026-07-30: 45
- 2026-07-28: 45
- 2026-07-27: 45

## Links

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