io.github.hezeclark/devkits
NPM · DEVKITS-MCP-SERVER · SCANNED AUG 3
12 local developer tools: JSON, Base64, JWT, regex, hash, UUID, Markdown, diff, cron.
Available components
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. How we score →
Supply Chain Security86
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
- Repository check failed: the declared repository URL returned HTTP 404. See how to fix → View diagnostics → Fail
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 129 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability77
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 588 tokens (~49/item across 12 items; 12 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
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.
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · devkits-mcp-server
claude mcp add hezeclark-devkits -- npx -y devkits-mcp-server
codex mcp add hezeclark-devkits -- npx -y devkits-mcp-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"hezeclark-devkits": {
"type": "local",
"command": [
"npx",
"-y",
"devkits-mcp-server"
],
"enabled": true
}
}
} openclaw mcp add hezeclark-devkits --command npx --arg -y --arg devkits-mcp-server
mcp_servers:
hezeclark-devkits:
command: "npx"
args: ["-y", "devkits-mcp-server"] {
"mcpServers": {
"hezeclark-devkits": {
"command": "npx",
"args": [
"-y",
"devkits-mcp-server"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +30
- Provenance: unverified → fail ▼ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Install scripts: unverified → pass ▲ security
- Maintenance: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- License: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 +30
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- MCP protocol: unverified → pass ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- 31 Jul 26 0
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −74
- Known CVEs: partial → unverified ▼ security
- Malware scan: pass → unverified ▼ security
- Provenance: fail → unverified ▼ security
- Install scripts: pass → unverified ▼ security
- Tool coverage: 100 → unverified ▼ functional
- License: pass → unverified ▼ functional
- Dependency health: partial → unverified ▼ functional
- Maintenance: pass → unverified ▼ functional
- Licence: MIT functional
- 27 Jul 26 +55
- Provenance: unverified → fail ▼ security
- Known CVEs: unverified → partial ▲ security
- Install scripts: unverified → pass ▲ security
- Maintenance: unverified → pass ▲ functional
- License: unverified → pass ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- First check of Tool coverage: 100 functional
- First check of Schema quality: pass functional
- First check of Schema quality: excellent functional
- First check of Schema quality: fail functional
- Licence: MIT functional
- 26 Jul 26 19
First indexed and scored.
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 94 packages
94 packages in the resolved dependency tree · 94 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
devkits_base64_decode ~35
Decode a Base64 encoded string back to plain text.
| Name | Type | Req | Description |
|---|---|---|---|
| encoded | string | yes | Base64 encoded string to decode |
No output schema declared.
No examples provided.
devkits_base64_encode ~31
Encode a string to Base64 format.
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | Plain text string to encode |
No output schema declared.
No examples provided.
devkits_cron_parse ~67
Parse and explain a cron expression. Returns a human-readable description and the next 5 scheduled run times.
| Name | Type | Req | Description |
|---|---|---|---|
| expression | string | yes | Cron expression with 5 fields: minute hour day-of-month month weekday (e.g. '0 9 * * 1-5') |
No output schema declared.
No examples provided.
devkits_diff_compare ~60
Compare two text strings line by line and return a unified diff-style result showing additions, deletions, and unchanged lines.
| Name | Type | Req | Description |
|---|---|---|---|
| text1 | string | yes | Original text (left side) |
| text2 | string | yes | Modified text (right side) |
No output schema declared.
No examples provided.
devkits_hash_generate ~66
Generate a cryptographic hash of a string using Node.js built-in crypto. Supports md5, sha1, sha256, sha384, sha512.
| Name | Type | Req | Description |
|---|---|---|---|
| algorithm | string | — | Hash algorithm (default: sha256) |
| text | string | yes | Input text to hash |
No output schema declared.
No examples provided.
devkits_json_format ~49
Format and validate JSON. Returns formatted JSON with syntax validation.
| Name | Type | Req | Description |
|---|---|---|---|
| indent | number | — | Indentation spaces (default: 2) |
| json | string | yes | Raw JSON string to format |
No output schema declared.
No examples provided.
devkits_jwt_decode ~47
Decode and inspect a JWT token (header, payload, signature). Does NOT verify signature.
| Name | Type | Req | Description |
|---|---|---|---|
| token | string | yes | JWT token string (three dot-separated base64url parts) |
No output schema declared.
No examples provided.
devkits_markdown_to_html ~51
Convert Markdown text to HTML. Supports headings, bold, italic, code blocks, links, lists, blockquotes, and horizontal rules.
| Name | Type | Req | Description |
|---|---|---|---|
| markdown | string | yes | Markdown formatted text to convert |
No output schema declared.
No examples provided.
devkits_regex_test ~73
Test a regular expression against a string. Returns all matches with positions.
| Name | Type | Req | Description |
|---|---|---|---|
| flags | string | — | Regex flags: g, i, m, s, u (default: g) |
| pattern | string | yes | Regular expression pattern (without delimiters) |
| text | string | yes | Input text to test against |
No output schema declared.
No examples provided.
devkits_url_decode ~34
URL-decode an encoded string (decodeURIComponent semantics).
| Name | Type | Req | Description |
|---|---|---|---|
| encoded | string | yes | URL-encoded string to decode |
No output schema declared.
No examples provided.
devkits_url_encode ~32
URL-encode a string (encodeURIComponent semantics).
| Name | Type | Req | Description |
|---|---|---|---|
| url | string | yes | URL or string to encode |
No output schema declared.
No examples provided.
devkits_uuid_generate ~43
Generate one or more random UUID v4 strings.
| Name | Type | Req | Description |
|---|---|---|---|
| count | number | — | Number of UUIDs to generate (default: 1, max: 100) |
No output schema declared.
No examples provided.