Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

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

−9 this week 64 Trust /100
Trust breakdown (6 categories)

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
Install

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

# add to Claude Code
claude mcp add mbdev3-consolelog-mcp -- npx -y consolelog-mcp
# add to Codex CLI
codex mcp add mbdev3-consolelog-mcp -- npx -y consolelog-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mbdev3-consolelog-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "consolelog-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add mbdev3-consolelog-mcp --command npx --arg -y --arg consolelog-mcp
# ~/.hermes/config.yaml
mcp_servers:
  mbdev3-consolelog-mcp:
    command: "npx"
    args: ["-y", "consolelog-mcp"]
// mcp.json
{
  "mcpServers": {
    "mbdev3-consolelog-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "consolelog-mcp"
      ]
    }
  }
}
Changelog

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
Diagnostics

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.

MCP tools — 27 exposed · ~1,511 tokens

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.

Tool Tokens
base64_decode ~34

Decode a Base64 string to UTF-8 text. Models are unreliable on longer strings.

NameTypeReqDescription
textstringyes

No output schema declared.

No examples provided.

base64_encode ~33

Encode a UTF-8 string to Base64. Models are unreliable on longer strings.

NameTypeReqDescription
textstringyes

No output schema declared.

No examples provided.

color_convert ~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.

NameTypeReqDescription
colorstringyesAny CSS color, e.g. "#3b82f6", "rgb(59,130,246)", "tomato".
formatstring

No output schema declared.

No examples provided.

contrast_check ~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.

NameTypeReqDescription
backgroundstringyesBackground color (any CSS color).
foregroundstringyesText color (any CSS color).

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
csvstringyes
headerbooleanTreat the first row as column names.

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
algorithmstring
textstringyesThe input string to hash.

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
algorithmstring
keystringyesThe secret key.
messagestringyesThe message to authenticate.

No output schema declared.

No examples provided.

html_decode ~24

Decode HTML entities back to their literal characters.

NameTypeReqDescription
textstringyes

No output schema declared.

No examples provided.

html_encode ~36

Escape a string into HTML entities (&, <, >, ", ’) so it renders as text.

NameTypeReqDescription
textstringyes

No output schema declared.

No examples provided.

json_format ~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.

NameTypeReqDescription
indentinteger
jsonstringyes
sort_keysboolean

No output schema declared.

No examples provided.

json_minify ~30

Strip all insignificant whitespace from a JSON string. Offloads bulk rewriting.

NameTypeReqDescription
jsonstringyes

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
jsonstringyes
outputstring
readonlyboolean
root_namestringName of the root type.

No output schema declared.

No examples provided.

json_to_yaml ~44

Convert JSON to YAML. Use this instead of hand-translating — it is error-prone.

NameTypeReqDescription
jsonstringyes
sort_keysboolean

No output schema declared.

No examples provided.

json_to_zod ~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.

NameTypeReqDescription
jsonstringyes
schema_namestringVariable name for the schema.

No output schema declared.

No examples provided.

jwt_decode ~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.

NameTypeReqDescription
tokenstringyesThe JWT (header.payload.signature).

No output schema declared.

No examples provided.

nano_id ~58

Generate compact, URL-safe Nano IDs. Use this instead of inventing IDs — they must be truly random. One per line.

NameTypeReqDescription
alphabetstringCharacter set preset.
countinteger
lengthinteger

No output schema declared.

No examples provided.

password ~99

Generate strong random password(s) with configurable character classes. Use this instead of inventing passwords — they must be random. One per line.

NameTypeReqDescription
countinteger
exclude_similarbooleanExclude lookalikes like i/l/1/O/0.
lengthinteger
lowercaseboolean
numbersboolean
symbolsboolean
uppercaseboolean

No output schema declared.

No examples provided.

pbkdf2_hash ~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.

NameTypeReqDescription
iterationsinteger
passwordstringyesThe password to hash.

No output schema declared.

No examples provided.

random_bytes ~55

Generate cryptographically random bytes in a chosen encoding (good for API keys, secrets, salts). Use this instead of inventing "random" strings.

NameTypeReqDescription
formatstring
lengthintegerNumber of bytes.

No output schema declared.

No examples provided.

regex_test ~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.

NameTypeReqDescription
flagsstring
patternstringyesThe regex pattern (no surrounding slashes).
textstringyesThe string to test against.

No output schema declared.

No examples provided.

sql_format ~47

Pretty-print a SQL query for a given dialect. Offloads tedious reformatting.

NameTypeReqDescription
dialectstring
keyword_casestring
sqlstringyes

No output schema declared.

No examples provided.

token_count ~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.

NameTypeReqDescription
modelstringModel id, e.g. gpt-5.4.
output_tokensintegerExpected output tokens for cost.
textstringyesThe text to measure.

No output schema declared.

No examples provided.

url_decode ~27

Decode a percent-encoded URL string back to plain text.

NameTypeReqDescription
textstringyes

No output schema declared.

No examples provided.

url_encode ~31

Percent-encode a string for safe use in a URL (encodeURIComponent semantics).

NameTypeReqDescription
textstringyes

No output schema declared.

No examples provided.

uuid ~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.

NameTypeReqDescription
countinteger

No output schema declared.

No examples provided.

xml_format ~32

Pretty-print and validate an XML string. Reports the line/column on parse errors.

NameTypeReqDescription
xmlstringyes

No output schema declared.

No examples provided.

yaml_to_json ~43

Convert YAML to JSON. Use this instead of hand-translating — it is error-prone.

NameTypeReqDescription
indentinteger
yamlstringyes

No output schema declared.

No examples provided.