
Log Analyzer
Analyzes Python application logs with filtering, pattern matching, and test output parsing. Includes both CLI tool and MCP server for integration with AI assistants.
Analyzes Python application logs with time-based and pattern filtering, pytest output parsing, and code coverage report generation for debugging and quality monitoring workflows.
What it does
- Parse Python application logs with time-based filtering
- Analyze pytest output and test results
- Generate code coverage reports
- Search logs by patterns and content
- Extract first/last N log records
- Run unit tests with configurable verbosity
Best for
About Log Analyzer
Log Analyzer is a community-built MCP server published by djm81 that provides AI assistants with tools and capabilities via the Model Context Protocol. Log Analyzer offers advanced Python log analysis, pattern filtering, pytest output parsing, and code coverage reporting It is categorized under analytics data, developer tools.
How to install
You can install Log Analyzer in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
License
Log Analyzer is released under the NOASSERTION license.
Log Analyzer MCP
Overview: Analyze Logs with Ease
Log Analyzer MCP is a powerful Python-based toolkit designed to streamline the way you interact with log files. Whether you're debugging complex applications, monitoring test runs, or simply trying to make sense of verbose log outputs, this tool provides both a Command-Line Interface (CLI) and a Model-Context-Protocol (MCP) server to help you find the insights you need, quickly and efficiently.
Why use Log Analyzer MCP?
- Simplify Log Analysis: Cut through the noise with flexible parsing, advanced filtering (time-based, content, positional), and configurable context display.
- Integrate with Your Workflow: Use it as a standalone
loganalyzerCLI tool for scripting and direct analysis, or integrate the MCP server with compatible clients like Cursor for an AI-assisted experience. - Extensible and Configurable: Define custom log sources, patterns, and search scopes to tailor the analysis to your specific needs.
Key Features
- Core Log Analysis Engine: Robust backend for parsing and searching various log formats.
loganalyzerCLI: Intuitive command-line tool for direct log interaction.- MCP Server: Exposes log analysis capabilities to MCP clients, enabling features like:
- Test log summarization (
analyze_tests). - Execution of test runs with varying verbosity.
- Targeted unit test execution (
run_unit_test). - On-demand code coverage report generation (
create_coverage_report). - Advanced log searching: all records, time-based, first/last N records.
- Test log summarization (
- Hatch Integration: For easy development, testing, and dependency management.
Installation
This package can be installed from PyPI (once published) or directly from a local build for development purposes.
From PyPI (Recommended for Users)
Once the package is published to PyPI.
pip install log-analyzer-mcp
This will install the loganalyzer CLI tool and make the MCP server package available for integration.
From Local Build (For Developers or Testing)
If you have cloned the repository and want to use your local changes:
-
Ensure Hatch is installed. (See Developer Guide)
-
Build the package:
hatch buildThis creates wheel and sdist packages in the
dist/directory. -
Install the local build into your Hatch environment (or any other virtual environment): Replace
<version>with the actual version from the generated wheel file (e.g.,0.2.7).# If using Hatch environment: hatch run pip uninstall log-analyzer-mcp -y && hatch run pip install dist/log_analyzer_mcp-<version>-py3-none-any.whl # For other virtual environments: # pip uninstall log-analyzer-mcp -y # (If previously installed) # pip install dist/log_analyzer_mcp-<version>-py3-none-any.whlFor IDEs like Cursor to pick up changes to the MCP server, you may need to manually reload the server in the IDE. See the Developer Guide for details.
Getting Started: Using Log Analyzer MCP
There are two primary ways to use Log Analyzer MCP:
-
As a Command-Line Tool (
loganalyzer):- Ideal for direct analysis, scripting, or quick checks.
- Requires Python 3.9+.
- For installation, see the Installation section above.
- For detailed usage, see the CLI Usage Guide (upcoming) or the API Reference for CLI commands.
-
As an MCP Server (e.g., with Cursor):
- Integrates log analysis capabilities directly into your AI-assisted development environment.
- For installation, see the Installation section. The MCP server component is included when you install the package.
- For configuration with a client like Cursor and details on running the server, see Configuring and Running the MCP Server below and the Developer Guide.
Configuring and Running the MCP Server
Configuration
Configuration of the Log Analyzer MCP (for both CLI and Server) is primarily handled via environment variables or a .env file in your project root.
- Environment Variables: Set variables like
LOG_DIRECTORIES,LOG_PATTERNS_ERROR,LOG_CONTEXT_LINES_BEFORE,LOG_CONTEXT_LINES_AFTER, etc., in the environment where the tool or server runs. .envFile: Create a.envfile by copying.env.template(this template file needs to be created and added to the repository) and customize the values.
For a comprehensive list of all configuration options and their usage, please refer to the (Upcoming) Configuration Guide.
(Note: The .env.template file should be created and added to the repository to provide a starting point for users.)
Running the MCP Server
The MCP server can be launched in several ways:
-
Via an MCP Client (e.g., Cursor): Configure your client to launch the
log-analyzer-mcpexecutable (often using a helper likeuvx). This is the typical way to integrate the server.Example Client Configuration (e.g., in
.cursor/mcp.json):{ "mcpServers": { "log_analyzer_mcp_server_prod": { "command": "uvx", // uvx is a tool to run python executables from venvs "args": [ "log-analyzer-mcp" // Fetches and runs the latest version from PyPI // Or, for a specific version: "log-analyzer-mcp==0.2.0" ], "env": { "PYTHONUNBUFFERED": "1", "PYTHONIOENCODING": "utf-8", "MCP_LOG_LEVEL": "INFO", // Recommended for production // "MCP_LOG_FILE": "/path/to/your/logs/mcp/log_analyzer_mcp_server.log", // Optional // --- Configure Log Analyzer specific settings via environment variables --- // These are passed to the analysis engine used by the server. // Example: "LOG_DIRECTORIES": "[\"/path/to/your/app/logs\"]", // Example: "LOG_PATTERNS_ERROR": "[\"Exception:.*\"]" // (Refer to the (Upcoming) docs/configuration.md for all options) } } // You can add other MCP servers here } }Notes:
- Replace placeholder paths and consult the Getting Started Guide, the (Upcoming) Configuration Guide, and the Developer Guide for more on configuration options and environment variables.
- The actual package name on PyPI is
log-analyzer-mcp.
-
Directly (for development/testing): You can run the server directly using its entry point if needed. The
log-analyzer-mcpcommand (available after installation) can be used:log-analyzer-mcp --transport http --port 8080 # or for stdio transport # log-analyzer-mcp --transport stdioRefer to
log-analyzer-mcp --helpfor more options. For development, using Hatch scripts defined inpyproject.tomlor the methods described in the Developer Guide is also common.
Documentation
- API Reference: Detailed reference for MCP server tools and CLI commands.
- Getting Started Guide: For users and integrators. This guide provides a general overview.
- Developer Guide: For contributors, covering environment setup, building, detailed testing procedures (including coverage checks), and release guidelines.
- (Upcoming) Configuration Guide: Detailed explanation of all
.envand environment variable settings. (This document needs to be created.) - (Upcoming) CLI Usage Guide: Comprehensive guide to all
loganalyzercommands and options. (This document needs to be created.) - .env.template: A template file for configuring environment variables. (This file needs to be created and added to the repository.)
- Refactoring Plan: Technical details on the ongoing evolution of the project.
Testing
To run tests and generate coverage reports, please refer to the comprehensive Testing Guidelines in the Developer Guide. This section covers using hatch test, running tests with coverage, generating HTML reports, and targeting specific tests.
Contributing
We welcome contributions! Please see CONTRIBUTING.md and the Developer Guide for guidelines on how to set up your environment, test, and contribute.
License
Log Analyzer MCP is licensed under the MIT License with Commons Clause. See LICENSE.md for details.
Alternatives
Related Skills
Browse all skillsAdvanced content and topic research skill that analyzes trends across Google Analytics, Google Trends, Substack, Medium, Reddit, LinkedIn, X, blogs, podcasts, and YouTube to generate data-driven article outlines based on user intent analysis
Technical leadership guidance for engineering teams, architecture decisions, and technology strategy. Includes tech debt analyzer, team scaling calculator, engineering metrics frameworks, technology evaluation tools, and ADR templates. Use when assessing technical debt, scaling engineering teams, evaluating technologies, making architecture decisions, establishing engineering metrics, or when user mentions CTO, tech debt, technical debt, team scaling, architecture decisions, technology evaluation, engineering metrics, DORA metrics, or technology strategy.
Use this skill when working with scientific research tools and workflows across bioinformatics, cheminformatics, genomics, structural biology, proteomics, and drug discovery. This skill provides access to 600+ scientific tools including machine learning models, datasets, APIs, and analysis packages. Use when searching for scientific tools, executing computational biology workflows, composing multi-step research pipelines, accessing databases like OpenTargets/PubChem/UniProt/PDB/ChEMBL, performing tool discovery for research tasks, or integrating scientific computational resources into LLM workflows.
Analyze ab test analyzer operations. Auto-activating skill for Data Analytics. Triggers on: ab test analyzer, ab test analyzer Part of the Data Analytics skill category. Use when writing or running tests. Trigger with phrases like "ab test analyzer", "ab analyzer", "analyze ab test r".
Use when building MCP servers or clients that connect AI systems with external tools and data sources. Invoke for MCP protocol compliance, TypeScript/Python SDKs, resource providers, tool functions.
Identify relevant security data sources that could capture the behavior defined in a structured hunt hypothesis. Use this skill after the hunt focus has been defined to translate investigative intent into candidate telemetry sources using existing platform catalogs. This skill supports hunt planning by reasoning over available schemas and metadata before analytics development or query execution.