Log Reducer MCP Server Cuts Token Usage When Claude Code Reads Logs

Log Reducer is an MCP server built specifically for Claude Code that reads log files server-side and sends only reduced output into conversations, preventing raw logs from entering the context window. According to the developer, a 2000-line log represents 20,000+ tokens permanently removed from sessions.
Compression Transforms
The tool runs 19 deterministic transforms to compress logs by 50-90% without making API calls:
- Folds stack traces — keeps code frames while collapsing framework noise
- Deduplicates repeated and near-identical lines
- Filters noise including health checks, heartbeats, progress bars, and Docker boilerplate
- Shortens UUIDs, timestamps, and long URLs
- Detects cycles and collapses repeating multi-line blocks
- Compacts access logs by stripping boilerplate down to method + path + status
Development with Claude Code
The entire project was built using Claude Code. The developer would paste log samples into conversations, Claude would analyze what could be compressed, implement transforms, and verify them against test fixtures. The evaluation workflow in the repository — which involves pasting a log, auto-generating ideal output, diffing against the pipeline, and implementing fixes — was designed to be driven entirely by Claude Code.
Setup and Usage
Install with npm install -g logreducer and add to your .claude/settings.json:
{
"mcpServers": {
"logreducer": {
"command": "npx",
"args": ["-y", "logreducer", "--mcp"]
}
}
}To use: copy a log to your clipboard and type /logdump in Claude Code. The raw log is saved to a temporary file and reduced server-side automatically. You can also point it at files directly, filter by log level, grep with regex, or get structural summaries of large logs.
The tool is free and open source under the MIT license, available on GitHub at launch-it-labs/log-reducer and npm as logreducer.
📖 Read the full source: r/ClaudeAI
👀 See Also

LogClaw: Open-Source AI SRE for Auto-Ticketing from Logs
LogClaw is an open-source log intelligence platform that runs on Kubernetes, ingests logs via OpenTelemetry, detects anomalies using signal-based composite scoring, and automatically creates tickets with root cause analysis in about 90 seconds.

Bit-Chat: AI Agents Can Send Bitcoin via Lightning Through Messaging Platforms
A setup called Bit-Chat enables AI agents to send Bitcoin payments over the Lightning network through email, WhatsApp, Telegram, or Signal. Agents can generate dedicated addresses like [email protected] and payments work even if the receiver isn't registered.

MemAware Benchmark Tests AI Memory Beyond Keyword Search
MemAware is a benchmark with 900 questions across 3 difficulty levels that tests whether AI assistants with memory can surface relevant context when queries don't hint at it. Results show BM25 search scored 2.8% vs 0.8% with no memory, while vector search drops to 0.7% on cross-domain connections.

Agent Kernel: Three Markdown Files for Stateful AI Agents
Agent Kernel provides three markdown files that enable stateful behavior in AI coding agents without databases or custom frameworks. It works with OpenCode, Claude Code, Codex, Cursor, Windsurf, and similar tools.