npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

consolelog-mcp

v0.1.0

Published

Deterministic developer tools for AI agents over MCP — hashing, encoding, regex, JSON/YAML/SQL formatting, codegen and more. From consolelog.tools.

Readme

consolelog-mcp

Deterministic developer tools for AI agents, over the Model Context Protocol. The same engine that powers consolelog.tools and its CLI — exposed so your coding agent stops guessing and starts calling.

It's a local stdio server, no account or key, and it runs via npx:

npx -y consolelog-mcp

Add it to your client

Claude Code

claude mcp add consolelog -- npx -y consolelog-mcp

Cursor / Claude Desktop / Windsurf — add to the client's MCP config:

{
  "mcpServers": {
    "consolelog": {
      "command": "npx",
      "args": ["-y", "consolelog-mcp"]
    }
  }
}

On native Windows (not WSL), wrap the launcher in cmd /c:

{ "mcpServers": { "consolelog": { "command": "cmd", "args": ["/c", "npx", "-y", "consolelog-mcp"] } } }

See consolelog.tools/mcp for every client (VS Code, Codex, Antigravity, opencode) and a copy-paste config for each.

Why curated (~25 tools, not 200+)

Every tool an MCP server exposes costs the calling agent context on each request, so a bloated server makes agents slower and less accurate. This server includes only what a language model is unreliable at — hashing, HMAC, password hashing, random IDs, regex execution, color math — or what's cheaper to offload than to regenerate: JSON/YAML/SQL/XML/CSV formatting and conversion, and codegen (TypeScript / Zod) from sample data.

Tools

Crypto & correctness: hash, hmac, pbkdf2_hash, uuid, nano_id, random_bytes, password, token_count, regex_test Encoding: base64_encode, base64_decode, url_encode, url_decode, html_encode, html_decode, jwt_decode Format & convert: json_format, json_minify, yaml_to_json, json_to_yaml, sql_format, xml_format, csv_to_json Codegen: json_to_typescript, json_to_zod Color: color_convert, contrast_check

License

Apache-2.0 — see LICENSE and NOTICE. Built and maintained by Matter Development. The "consolelog" name and logo are trademarks; the license does not grant rights to them, and forks must ship under a different name.