{ "name": "logreducer", "description": "MCP tool and CLI that reduces log files for AI consumption — strip noise, deduplicate, shorten IDs, fold stack traces", "version": "0.2.0", "mcpName": "io.github.imankha/log-reducer", "license": "MIT", "author": "Launch It Labs", "homepage": "https://github.com/launch-it-labs/log-reducer", "repository": { "type": "git", "url": "git+https://github.com/launch-it-labs/log-reducer.git" }, "bugs": { "url": "https://github.com/launch-it-labs/log-reducer/issues" }, "keywords": [ "mcp", "log", "reduce", "compress", "tokens", "ai", "claude", "llm", "debugging", "cli", "model-context-protocol" ], "engines": { "node": ">=18" }, "files": [ "out/src/**/*.js", "out/src/**/*.d.ts", "README.md", "LICENSE", "docs/" ], "bin": { "logreducer": "out/src/cli.js" }, "scripts": { "compile": "tsc -p ./", "watch": "tsc -watch -p ./", "prepublishOnly": "npm run compile", "test": "tsc -p ./ && node out/test/runFixtures.js && node out/test/testMcpServer.js", "lint": "eslint src --ext ts", "mcp": "node out/src/mcp-server.js", "eval": "node out/src/eval.js" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.27.0", "zod": "^3.25.0" }, "devDependencies": { "@types/node": "^20.0.0", "typescript": "^5.3.0" } }