# io.github.Dusheh/myclaw-toolkit (npm · myclaw-toolkit)

23-in-1 developer utility toolkit — search, exchange rates, crypto, QR codes, and more

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

## Components

- npm · `myclaw-toolkit`: 67/100 (this document), [markdown](https://verifymcp.io/servers/dusheh-myclaw-toolkit/myclaw-toolkit.md), [page](https://verifymcp.io/servers/dusheh-myclaw-toolkit/myclaw-toolkit)

## Channel facts

- Registry: `npm`
- Package: `myclaw-toolkit`
- Version: `1.0.11`
- 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 (125 of 129), 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 (125 of 129), 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 4 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 1063 tokens (~42/item across 25 items; 25 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 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 dusheh-myclaw-toolkit -- npx -y myclaw-toolkit
```

### Codex

```bash
codex mcp add dusheh-myclaw-toolkit -- npx -y myclaw-toolkit
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add dusheh-myclaw-toolkit --command npx --arg -y --arg myclaw-toolkit
```

### Hermes

```yaml
mcp_servers:
  dusheh-myclaw-toolkit:
    command: "npx"
    args: ["-y", "myclaw-toolkit"]
```

### Other

```json
{
  "mcpServers": {
    "dusheh-myclaw-toolkit": {
      "command": "npx",
      "args": [
        "-y",
        "myclaw-toolkit"
      ]
    }
  }
}
```

## 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.27

### 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 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] Licence: MIT

### 2026-08-01 (score 21, −7)

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

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

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

### 2026-07-29 (score 24, −1)

- [functional regression] Dependency health: partial → unverified

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

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

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

First indexed and scored.

## MCP tools (25)

### `timestamp` (~24 tokens)

Get current Unix timestamp and ISO 8601 datetime (runs locally, no network)

### `uuid` (~32 tokens)

Generate UUID v4 identifiers (runs locally, no network)

Input parameters:

- `count` (number): Number of UUIDs to generate

### `base64` (~49 tokens)

Encode or decode Base64 strings (runs locally, no data leaves your machine)

Input parameters:

- `action` (string, required): Operation to perform
- `text` (string, required): Text to encode or Base64 to decode

### `hash` (~49 tokens)

Generate cryptographic hashes — MD5, SHA1, SHA256, SHA512 (runs locally, no network)

Input parameters:

- `algorithm` (string): Hash algorithm
- `text` (string, required): Text to hash

### `qrcode` (~37 tokens)

Generate QR codes from text or URLs (runs locally, no network)

Input parameters:

- `text` (string, required): Text or URL to encode in QR code

### `color_tools` (~62 tokens)

Convert colors between hex, RGB, and HSL formats (runs locally, no network)

Input parameters:

- `color` (string, required): Color value (hex like '#ff0000', rgb like '255,0,0', or hsl like '0,100,50')

### `json_formatter` (~46 tokens)

Format, validate, or minify JSON strings (runs locally, no data leaves your machine)

Input parameters:

- `action` (string): Operation
- `json` (string, required): JSON string to process

### `url_tools` (~42 tokens)

Encode or decode URL strings (runs locally, no network)

Input parameters:

- `action` (string, required): Operation
- `text` (string, required): Text to encode or URL to decode

### `text_tools` (~43 tokens)

Text processing utilities — count, reverse, case conversion (runs locally, no network)

Input parameters:

- `action` (string, required): Operation
- `text` (string, required): Text to process

### `exchange_rate` (~59 tokens)

Get real-time currency exchange rates between any two currencies

Input parameters:

- `from` (string, required): Source currency code (e.g., USD, CNY, EUR)
- `to` (string, required): Target currency code (e.g., USD, CNY, EUR)

### `crypto_price` (~59 tokens)

Get current cryptocurrency prices in USD or any fiat currency

Input parameters:

- `coin` (string, required): Cryptocurrency symbol (e.g., BTC, ETH, SOL, USDT)
- `vs` (string): Quote currency (e.g., usd, cny, eur)

### `domain_check` (~34 tokens)

Check domain name availability and whois information

Input parameters:

- `domain` (string, required): Domain name to check (e.g., example.com)

### `bmi_calculator` (~47 tokens)

Calculate BMI (Body Mass Index) from height and weight (runs locally, no network)

Input parameters:

- `height` (number, required): Height in centimeters
- `weight` (number, required): Weight in kilograms

### `vcard_generator` (~61 tokens)

Generate vCard (.vcf) contact files (runs locally, no network)

Input parameters:

- `email` (string): Email address
- `name` (string, required): Full name
- `org` (string): Organization/company
- `phone` (string): Phone number

### `web_search` (~41 tokens)

Search the web using Bing — returns titles, snippets, and URLs

Input parameters:

- `count` (number): Number of results
- `query` (string, required): Search query

### `news_search` (~35 tokens)

Search news articles from global sources

Input parameters:

- `count` (number): Number of articles
- `query` (string, required): News search query

### `product_search` (~36 tokens)

Search products across multiple e-commerce platforms

Input parameters:

- `count` (number): Number of results
- `query` (string, required): Product search query

### `rss_feed` (~39 tokens)

Fetch and parse RSS feeds from any URL

Input parameters:

- `count` (number): Number of items
- `url` (string, required): RSS feed URL to fetch

### `read_page` (~34 tokens)

Extract readable content from any web page (like Readability)

Input parameters:

- `url` (string, required): Web page URL to extract content from

### `markdown_to_html` (~35 tokens)

Convert Markdown text to HTML (runs locally, no data leaves your machine)

Input parameters:

- `markdown` (string, required): Markdown text to convert

### `ai_translate` (~53 tokens)

Translate text between languages (uses MyMemory translation API)

Input parameters:

- `from` (string): Source language (auto for auto-detect)
- `text` (string, required): Text to translate
- `to` (string): Target language

### `quote` (~21 tokens)

Get inspirational or random quotes (remote API, no user data sent)

### `wifi_qrcode` (~62 tokens)

Generate WiFi connection QR codes (runs 100% locally — your password NEVER leaves your device)

Input parameters:

- `password` (string, required): WiFi password
- `security` (string): Security type
- `ssid` (string, required): WiFi network name (SSID)

### `compare` (~42 tokens)

Compare two items side-by-side (text, products, anything)

Input parameters:

- `a` (string, required): First item to compare
- `b` (string, required): Second item to compare

### `health_check` (~21 tokens)

Check if the MyClaw API backend is reachable and responsive

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/dusheh-myclaw-toolkit/myclaw-toolkit#diagnostics

## Score history

- 2026-08-03: 67
- 2026-08-02: 63
- 2026-08-01: 21
- 2026-07-31: 28
- 2026-07-29: 24
- 2026-07-28: 25
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/myclaw-toolkit
- Socket report: https://socket.dev/npm/package/myclaw-toolkit
- Repository: https://github.com/Dusheh/myclaw-toolkit
- Changelog RSS feed: https://verifymcp.io/servers/dusheh-myclaw-toolkit/myclaw-toolkit/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dusheh-myclaw-toolkit/myclaw-toolkit/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dusheh-myclaw-toolkit/myclaw-toolkit
