# io.github.kira-autonoma/devtools (npm · mcp-devtools-server)

23 developer utilities — base64, JWT, UUID, hash, QR, regex, timestamps. No API keys.

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

## Components

- npm · `mcp-devtools-server`: 64/100 (this document), [markdown](https://verifymcp.io/servers/kira-autonoma-devtools/mcp-devtools-server.md), [page](https://verifymcp.io/servers/kira-autonoma-devtools/mcp-devtools-server)

## Channel facts

- Registry: `npm`
- Package: `mcp-devtools-server`
- Version: `1.0.1`
- 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 (123 of 127), 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 (123 of 127), 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 137 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 900 tokens (~39/item across 23 items; 23 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 kira-autonoma-devtools -- npx -y mcp-devtools-server
```

### Codex

```bash
codex mcp add kira-autonoma-devtools -- npx -y mcp-devtools-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "kira-autonoma-devtools": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "mcp-devtools-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add kira-autonoma-devtools --command npx --arg -y --arg mcp-devtools-server
```

### Hermes

```yaml
mcp_servers:
  kira-autonoma-devtools:
    command: "npx"
    args: ["-y", "mcp-devtools-server"]
```

### Other

```json
{
  "mcpServers": {
    "kira-autonoma-devtools": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-devtools-server"
      ]
    }
  }
}
```

## 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-02 (score 64, +43)

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

### 2026-08-01 (score 21, +16)

- [functional improvement] Tool coverage: unverified → 100

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

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

### 2026-07-30 (score 6, −40)

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

### 2026-07-28 (score 46, +22)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fail

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

First indexed and scored.

## MCP tools (23)

### `base64_encode` (~25 tokens)

Encode text to Base64

Input parameters:

- `text` (string, required): Text to encode

### `base64_decode` (~27 tokens)

Decode Base64 to text

Input parameters:

- `encoded` (string, required): Base64 string to decode

### `url_encode` (~26 tokens)

URL-encode a string

Input parameters:

- `text` (string, required): Text to URL-encode

### `url_decode` (~28 tokens)

Decode a URL-encoded string

Input parameters:

- `text` (string, required): URL-encoded string to decode

### `html_encode` (~26 tokens)

HTML-encode special characters

Input parameters:

- `text` (string, required): Text to HTML-encode

### `html_decode` (~28 tokens)

Decode HTML entities to plain text

Input parameters:

- `text` (string, required): HTML-encoded string to decode

### `hash` (~47 tokens)

Generate a hash of the input text. Supports md5, sha1, sha256, sha512

Input parameters:

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

### `hmac` (~44 tokens)

Generate HMAC of the input text

Input parameters:

- `algorithm` (string): Hash algorithm
- `key` (string, required): Secret key
- `text` (string, required): Text to sign

### `jwt_decode` (~35 tokens)

Decode a JWT token without verification. Shows header, payload, and expiration status

Input parameters:

- `token` (string, required): JWT token to decode

### `uuid` (~28 tokens)

Generate a UUID (v4 random)

Input parameters:

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

### `random_string` (~40 tokens)

Generate a random string (hex, alphanumeric, or bytes)

Input parameters:

- `format` (string): Output format
- `length` (number): Length in characters

### `json_format` (~43 tokens)

Pretty-print or minify JSON

Input parameters:

- `json` (string, required): JSON string to format
- `minify` (boolean): If true, minify instead of pretty-print

### `json_diff` (~36 tokens)

Compare two JSON objects and show differences

Input parameters:

- `a` (string, required): First JSON string
- `b` (string, required): Second JSON string

### `timestamp` (~45 tokens)

Convert between Unix timestamps and ISO dates, or get the current time

Input parameters:

- `input` (string): Unix timestamp (seconds or ms) or ISO date string. Omit for current time

### `regex_test` (~65 tokens)

Test a regex pattern against text. Returns matches and capture groups

Input parameters:

- `flags` (string): Regex flags (g, i, m, s, etc.)
- `pattern` (string, required): Regular expression pattern (without delimiters)
- `text` (string, required): Text to test against

### `color_convert` (~54 tokens)

Convert between hex, RGB, and HSL color formats

Input parameters:

- `color` (string, required): Color in hex (#ff0000), rgb (255,0,0), or hsl (0,100%,50%) format

### `qr_generate` (~53 tokens)

Generate a QR code from text or URL. Returns a data URI (base64 PNG image)

Input parameters:

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

### `http_status` (~25 tokens)

Look up HTTP status code meaning

Input parameters:

- `code` (number, required): HTTP status code

### `number_base` (~76 tokens)

Convert a number between bases (binary, octal, decimal, hex)

Input parameters:

- `to_base` (number): Target base (2-36). If omitted, shows all common bases
- `value` (string, required): Number to convert (prefix with 0x for hex, 0b for binary, 0o for octal)

### `byte_convert` (~51 tokens)

Convert between byte units (B, KB, MB, GB, TB)

Input parameters:

- `value` (string, required): Value with unit, e.g. '1.5GB', '1024KB', '500MB'

### `text_stats` (~29 tokens)

Count characters, words, lines, and analyze text

Input parameters:

- `text` (string, required): Text to analyze

### `text_diff` (~34 tokens)

Compare two text strings line-by-line

Input parameters:

- `a` (string, required): First text
- `b` (string, required): Second text

### `cron_explain` (~35 tokens)

Explain what a cron expression means in human-readable terms

Input parameters:

- `expression` (string, required): Cron expression (5 or 6 fields)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/kira-autonoma-devtools/mcp-devtools-server#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 64
- 2026-08-01: 21
- 2026-07-31: 5
- 2026-07-30: 6
- 2026-07-28: 46
- 2026-07-27: 24

## Links

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