Log Reader

An MCP server to read MCP logs to debug directly inside the client

Installation

Installing for Claude Desktop

Manual Configuration Required

This MCP server requires manual configuration. Run the command below to open your configuration file:

npx mcpbar@latest edit -c claude

This will open your configuration file where you can add the Log Reader MCP server manually.

MCP Server: Analyze & Debug MCP Logs

smithery badge

image


πŸ” Read logs from standard locations across all platforms

πŸ”Ž Filter, paginate, and analyze large log collections

🎯 Overview

MCP Log Reader is a specialized MCP server that helps you analyze and debug Model Context Protocol logs. It provides Claude with direct access to log files, making it easy to troubleshoot MCP integrations and understand how Claude interacts with your tools.

  • Multi-platform Support: Works on macOS, Windows, and Linux with platform-specific log paths
  • Smart Filtering: Find specific log entries with case-insensitive text search
  • Paginated Browsing: Navigate large log collections efficiently
  • Size Management: Handles large log files with intelligent truncation
  • Seamless Claude Integration: Works directly with Claude Desktop

πŸš€ Quick Start

Installing via Smithery

To install MCP Log Reader for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @klara-research/MCP-Analyzer --client claude

Installing Manually

Install directly from GitHub:

# Clone the repository
git clone https://github.com/klara-research/MCP-Analyzer.git
cd MCP-Analyzer

# Install dependencies
npm i

Build and run:

# Compile TypeScript
npx tsc

πŸ”Œ Connecting to Claude

Add the server to your Claude Desktop configuration:

{
  "mcpServers": {
    "log-reader": {
      "command": "node",
      "args": [
        "/absolute/path/MCP-Analyzer/build"
      ]
    }
  }
}

Then restart Claude Desktop.

πŸ“‹ Available Parameters

The log reader supports these parameters:

ParameterDescriptionDefault
linesNumber of lines to read from each log file100
filterText to filter log entries by (case-insensitive)""
customPathCustom path to log directoryOS-specific
fileLimitMaximum number of files to read per page5
pagePage number for pagination1

πŸ’‘ Example Usage

Ask Claude to use the log reader tool:

Can you check my MCP logs for any connection errors in the last day?

Or with specific parameters:

Can you look through MCP logs with filter="error" and lines=50 to find initialization issues?

βš™οΈ How It Works

  1. The server automatically detects your OS and finds the appropriate log directory
  2. It locates all MCP log files and sorts them by modification time (newest first)
  3. The requested page of log files is retrieved based on pagination settings
  4. Files are processed with size limits to prevent overwhelming responses
  5. Filtered content is returned in a structured format with pagination details

πŸ“„ License

MIT License

Share:
Details:
  • Stars


    10
  • Forks


    2
  • Last commit


    2 months ago
  • Repository age


    3 months
  • License


    MIT
View Repository

Auto-fetched from GitHub .

MCP servers similar to Log Reader:

Β 

Β 
Β 
  • Stars


  • Forks


  • Last commit


Β 

Β 
Β 
  • Stars


  • Forks


  • Last commit


Β 

Β 
Β 
  • Stars


  • Forks


  • Last commit


Log Reader: MCP Server – MCP.Bar