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.
Maintainers
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-mcpAdd it to your client
Claude Code
claude mcp add consolelog -- npx -y consolelog-mcpCursor / 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.
