consolelog dev tools
NPM · CONSOLELOG-MCP · SCANNED AUG 3
Deterministic dev tools for AI agents over MCP: hashing, encoding, formatting, codegen, and more.
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 Security89
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- No install/post-install scripts declared.Pass
- 5 of 5 dependencies flagged as unhealthy (4 deprecated). 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 (Apache-2.0).Pass
- Actively maintained (last published 60 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability88
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 1638 tokens (~58/item across 28 items; 27 tools + 1 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage78
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 33% of tool parameters carry a description.Partial
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
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 · consolelog-mcp
claude mcp add mbdev3-consolelog-mcp -- npx -y consolelog-mcp
codex mcp add mbdev3-consolelog-mcp -- npx -y consolelog-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"mbdev3-consolelog-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"consolelog-mcp"
],
"enabled": true
}
}
} openclaw mcp add mbdev3-consolelog-mcp --command npx --arg -y --arg consolelog-mcp
mcp_servers:
mbdev3-consolelog-mcp:
command: "npx"
args: ["-y", "consolelog-mcp"] {
"mcpServers": {
"mbdev3-consolelog-mcp": {
"command": "npx",
"args": [
"-y",
"consolelog-mcp"
]
}
}
} 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 +16
- Malware scan: unverified → pass ▲ security
- Dependency health: 0.68 → 0.16 ▼ functional
- Stability: unverified → 0.20 ▲ functional
- 1 Aug 26 −7
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 31 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 27 Jul 26 +34
- Tool coverage: unverified → 100 ▲ functional
- Schema quality: unverified → 100 ▲ functional
- First check of Schema quality: fail functional
- First check of Schema quality: excellent functional
- First check of Tool coverage: 33 functional
- First check of Schema quality: pass functional
- 26 Jul 26 39
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 5 packages
5 packages in the resolved dependency tree · 4 deprecated · 2 stale.
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.
base64_decode Base64 decode ~34
Decode a Base64 string to UTF-8 text. Models are unreliable on longer strings.
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | — |
No output schema declared.
No examples provided.
base64_encode Base64 encode ~33
Encode a UTF-8 string to Base64. Models are unreliable on longer strings.
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | — |
No output schema declared.
No examples provided.
color_convert Convert a color ~95
Convert a CSS color across formats (HEX/RGB/HSL/HSV/CMYK + nearest name). Use this instead of doing the arithmetic yourself — models fumble it. Returns JSON of all formats, or one format if requested.
| Name | Type | Req | Description |
|---|---|---|---|
| color | string | yes | Any CSS color, e.g. "#3b82f6", "rgb(59,130,246)", "tomato". |
| format | string | — | — |
No output schema declared.
No examples provided.
contrast_check Check color contrast (WCAG) ~63
Compute the WCAG contrast ratio between a foreground and background color and report which accessibility levels pass. Use this instead of estimating it. Returns JSON.
| Name | Type | Req | Description |
|---|---|---|---|
| background | string | yes | Background color (any CSS color). |
| foreground | string | yes | Text color (any CSS color). |
No output schema declared.
No examples provided.
csv_to_json CSV to JSON ~63
Convert CSV to a JSON array of objects (delimiter auto-detected). Use this instead of parsing CSV by hand — quoting/escaping rules are easy to get wrong.
| Name | Type | Req | Description |
|---|---|---|---|
| csv | string | yes | — |
| header | boolean | — | Treat the first row as column names. |
No output schema declared.
No examples provided.
hash Hash ~75
Compute a cryptographic hash (MD5, SHA-1, SHA-256, SHA-512) of a string. Use this instead of computing the hash yourself — language models cannot produce correct cryptographic hashes. Returns the lowercase hex digest.
| Name | Type | Req | Description |
|---|---|---|---|
| algorithm | string | — | — |
| text | string | yes | The input string to hash. |
No output schema declared.
No examples provided.
hmac HMAC ~71
Compute an HMAC (keyed hash) of a message with a secret key. Use this instead of doing it yourself — models cannot compute HMACs. Returns hex.
| Name | Type | Req | Description |
|---|---|---|---|
| algorithm | string | — | — |
| key | string | yes | The secret key. |
| message | string | yes | The message to authenticate. |
No output schema declared.
No examples provided.
html_decode HTML entity decode ~24
Decode HTML entities back to their literal characters.
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | — |
No output schema declared.
No examples provided.
html_encode HTML entity encode ~36
Escape a string into HTML entities (&, <, >, ", ’) so it renders as text.
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | — |
No output schema declared.
No examples provided.
json_format Format JSON ~73
Pretty-print (and validate) a JSON string with configurable indentation and optional key sorting. Use this to format large JSON instead of regenerating it yourself — it offloads the work and reports parse errors with a line.
| Name | Type | Req | Description |
|---|---|---|---|
| indent | integer | — | — |
| json | string | yes | — |
| sort_keys | boolean | — | — |
No output schema declared.
No examples provided.
json_minify Minify JSON ~30
Strip all insignificant whitespace from a JSON string. Offloads bulk rewriting.
| Name | Type | Req | Description |
|---|---|---|---|
| json | string | yes | — |
No output schema declared.
No examples provided.
json_to_typescript JSON to TypeScript ~70
Generate TypeScript types/interfaces from a sample JSON object. Use this to derive types from real data instead of writing them by hand.
| Name | Type | Req | Description |
|---|---|---|---|
| json | string | yes | — |
| output | string | — | — |
| readonly | boolean | — | — |
| root_name | string | — | Name of the root type. |
No output schema declared.
No examples provided.
json_to_yaml JSON to YAML ~44
Convert JSON to YAML. Use this instead of hand-translating — it is error-prone.
| Name | Type | Req | Description |
|---|---|---|---|
| json | string | yes | — |
| sort_keys | boolean | — | — |
No output schema declared.
No examples provided.
json_to_zod JSON to Zod schema ~57
Generate a Zod schema from a sample JSON object. Use this to derive a validator from real data instead of writing it by hand.
| Name | Type | Req | Description |
|---|---|---|---|
| json | string | yes | — |
| schema_name | string | — | Variable name for the schema. |
No output schema declared.
No examples provided.
jwt_decode Decode JWT ~58
Decode a JSON Web Token into its header and payload (signature is NOT verified). Use this to inspect a token instead of base64-decoding segments yourself. Returns pretty-printed JSON.
| Name | Type | Req | Description |
|---|---|---|---|
| token | string | yes | The JWT (header.payload.signature). |
No output schema declared.
No examples provided.
nano_id Generate Nano ID(s) ~58
Generate compact, URL-safe Nano IDs. Use this instead of inventing IDs — they must be truly random. One per line.
| Name | Type | Req | Description |
|---|---|---|---|
| alphabet | string | — | Character set preset. |
| count | integer | — | — |
| length | integer | — | — |
No output schema declared.
No examples provided.
password Generate password(s) ~99
Generate strong random password(s) with configurable character classes. Use this instead of inventing passwords — they must be random. One per line.
| Name | Type | Req | Description |
|---|---|---|---|
| count | integer | — | — |
| exclude_similar | boolean | — | Exclude lookalikes like i/l/1/O/0. |
| length | integer | — | — |
| lowercase | boolean | — | — |
| numbers | boolean | — | — |
| symbols | boolean | — | — |
| uppercase | boolean | — | — |
No output schema declared.
No examples provided.
pbkdf2_hash Password hash (PBKDF2) ~75
Hash a password with PBKDF2-SHA256 and a random salt (a browser/edge-safe alternative to bcrypt). Use this to store passwords instead of inventing a scheme. Returns a self-describing salted hash string.
| Name | Type | Req | Description |
|---|---|---|---|
| iterations | integer | — | — |
| password | string | yes | The password to hash. |
No output schema declared.
No examples provided.
random_bytes Generate random bytes ~55
Generate cryptographically random bytes in a chosen encoding (good for API keys, secrets, salts). Use this instead of inventing "random" strings.
| Name | Type | Req | Description |
|---|---|---|---|
| format | string | — | — |
| length | integer | — | Number of bytes. |
No output schema declared.
No examples provided.
regex_test Test a regular expression ~79
Run a JavaScript regular expression against a test string and return the actual matches (with indices and capture groups). Use this instead of predicting matches yourself — models routinely hallucinate regex results.
| Name | Type | Req | Description |
|---|---|---|---|
| flags | string | — | — |
| pattern | string | yes | The regex pattern (no surrounding slashes). |
| text | string | yes | The string to test against. |
No output schema declared.
No examples provided.
sql_format Format SQL ~47
Pretty-print a SQL query for a given dialect. Offloads tedious reformatting.
| Name | Type | Req | Description |
|---|---|---|---|
| dialect | string | — | — |
| keyword_case | string | — | — |
| sql | string | yes | — |
No output schema declared.
No examples provided.
token_count Count LLM tokens ~90
Estimate the LLM token count, cost, and context-window fit of a piece of text for a given model. Use this instead of guessing — models cannot count their own tokens. Returns JSON.
| Name | Type | Req | Description |
|---|---|---|---|
| model | string | — | Model id, e.g. gpt-5.4. |
| output_tokens | integer | — | Expected output tokens for cost. |
| text | string | yes | The text to measure. |
No output schema declared.
No examples provided.
url_decode URL decode ~27
Decode a percent-encoded URL string back to plain text.
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | — |
No output schema declared.
No examples provided.
url_encode URL encode ~31
Percent-encode a string for safe use in a URL (encodeURIComponent semantics).
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | — |
No output schema declared.
No examples provided.
uuid Generate UUID(s) ~49
Generate random RFC-4122 v4 UUIDs. Use this instead of inventing UUIDs yourself — model-produced IDs are not random and may collide. One per line.
| Name | Type | Req | Description |
|---|---|---|---|
| count | integer | — | — |
No output schema declared.
No examples provided.
xml_format Format XML ~32
Pretty-print and validate an XML string. Reports the line/column on parse errors.
| Name | Type | Req | Description |
|---|---|---|---|
| xml | string | yes | — |
No output schema declared.
No examples provided.
yaml_to_json YAML to JSON ~43
Convert YAML to JSON. Use this instead of hand-translating — it is error-prone.
| Name | Type | Req | Description |
|---|---|---|---|
| indent | integer | — | — |
| yaml | string | yes | — |
No output schema declared.
No examples provided.