logsonic
MCP Serverlogsonicpublic

logsonic

Desktop based log analysis for all your log sources

Repository Info

39
Stars
2
Forks
39
Watchers
4
Issues
TypeScript
Language
MIT License
License

About This Server

Desktop based log analysis for all your log sources

Model Context Protocol (MCP) - This server can be integrated with AI applications to provide additional context and capabilities, enabling enhanced AI interactions and functionality.

Documentation

LogSonic

LogSonic is a Desktop-First Log Analytics application which runs on Windows, Mac and Linux. It runs fully offline with no external dependencies. Installable as a single binary of approximately 10 MB, it serves a feature-rich User interface in your local browser. The log ingestion wizard of logsonic supports ingesting local log file as well as fetching AWS cloudwatch logs and automatically recognizes well known log patterns to properly tokenize the log contents. The log search experience is blazing fast, delightful and intuitive.

It also has an MCP server extension so that you could analyze logs with machine intelligence.

LogSonic Screenshot

Features

  • New! MCP Server: Logsonic MCP server can now connect with your favorite MCP client such as Claude Desktop/Cursor/Windsurf.
  • Assisted server query:Logsonic now allows user to run a local Ollama model which helps in writing bleve search query.
  • Desktop-First: Designed specifically for local log analysis
  • Minimal: Single binary installation for Windows, Mac, and Linux. Run inside Docker, if you wish to.
  • Supports Cloud Logs import: Pulls logs from cloudwatch to your desktop. More Ingestion options incoming.
  • Offline: No internet dependency, all data stays on your machine, debug while you travel.
  • Multiple Log Formats: Automatic recognition and ingestion of logs from various formats (Syslog, Apache, Nginx) based on grok pattern.
  • Customizable: Ability to filter and color log lines based on cotents, choose fields to display.
  • Advanced Search: Comprehensive search capabilities through the web UI. Search highlighting, Complex queries with AND OR NOT logical operations etc.
  • Visualization: Built-in visualization for log distribution patterns
  • Extensible: Well documented OpenAPI interface to ingest logs from your own scripts or tools.

Installation

Pre-built Binary

  1. Download the latest LogSonic binary for your platform from the GitHub releases page.
  2. Make the binary executable (Linux/Mac only):
    chmod +x logsonic
    
  3. Run the binary (prefer to run from console to see errors etc.):
    ./logsonic
    

Note: On MacOS, unsigned download binaries are not allowed to run by default. In order to run the downloaded binary, open System Preferences, choose the Security control panel, select the General tab. Look for the message: "logSonic was blocked from opening because it is not from an identified developer." Click the Open Anyway button to the right of the message.

On Windows: You may need to enable "Run this Application Anyway" while running the executeable.

Alternatively, you could build the binary yourself as per steps below or build the Docker image.

  1. Open your browser and navigate to http://localhost:8080

If the port 8080 is not available in your system, you could choose another port to to run by command line option -port 8088

./logsonic -port 8088

Looking for some sample logs to try? LogHub repository has some great collection such as this Apache log Download the log to you local computer and import using Import File menu.

Enabling AI Assistance

Logsonic supports Model Context Protocol. To install Logsonic MCP server, use the instructions in MCP server

Bleve Search Query assistance

LogSonic AI Assitant

Since bleve query syntax may be confusing for beginners, Logsonic has a feature which converts simple english queries to bleve search syntax. This is available in the release 0.5 onwards. Logsonic will automatically detect and enable AI assistance features if a local Ollama instance is running with the predefined logsonic image. Follow the instructions to build your local Modelfile

Build from Source

Prerequisites

  • Go 1.23.6 or later
  • Node.js 20 or later
  • npm

Steps

  1. Clone the repository:

    git clone https://github.com/logsonic/logsonic.git
    cd logsonic
    
  2. Build the frontend:

    cd frontend
    npm ci
    npm run build
    npm run build:copy
    cd ..
    
  3. Build the backend:

    cd backend
    go mod download
    go build -o logsonic .
    
  4. Run the binary:

    ./logsonic
    

Docker Image

  1. Build the Docker image:

    docker buildx build -t logsonic .
    
  2. Run the container:

    docker run -p 8080:8080 -v /path/to/logs:/data logsonic
    

Configuration Options

LogSonic can be configured using command line flags or environment variables:

Cloudwatch log ingestions

awscli must be configured to use cloudwatch ingestion before running logsonic binary.

Command Line Flags

  • -host: Host address to bind to (default: localhost)
  • -port: Port to listen on (default: 8080)
  • -storage: Path to storage directory for indices (default: system-specific)
  • -help: Show usage information

Environment Variables

  • HOST: Host address to bind to
  • PORT: Port to listen on
  • STORAGE_PATH: Path to storage directory

Examples

# Basic usage with defaults
logsonic

# Custom host and port
logsonic -host 0.0.0.0 -port 9000

# Custom storage path
logsonic -storage /var/logs/storage

# Using environment variables
HOST=0.0.0.0 PORT=9000 STORAGE_PATH=/var/logs/storage logsonic

Getting Started

Log Ingestion

  1. Start LogSonic and open the web UI in your browser at http://localhost:8080
  2. Click on "Import Log File" button in the UI
  3. Select your log file and choose the appropriate format
  4. If your log format is not automatically detected, you can specify a custom Grok pattern
  5. Once imported, the log file will be indexed and available for searching

Search and Analysis

  1. Use the search bar at the top to filter logs by time range and keywords
  2. The left panel provides field-based filtering options
  3. Use the advanced search syntax for more complex queries
  4. Create custom filters and save them for future use

Development Environment

Frontend

The frontend is built with React, TypeScript, and Vite:

In development setup, we run the UI on port 8081 while the backend is running on 8080

cd frontend
npm ci
PORT=8081 npm run dev

Backend

The backend is written in Go:

cd backend
# If using air for hot reloading
./scripts/dev.sh

# Or standard Go run
go run main.go

Open http://localhost:8081 in your browser for local development

Architecture

LogSonic uses a client-server architecture:

  • Backend: Go server that handles log ingestion, parsing, and indexing
  • Frontend: React SPA that provides the user interface
  • Storage: Local file-based storage for indices and metadata

See Architecture Documentation for more details.

API Documentation

LogSonic provides a Swagger UI for exploring and testing the API. Once the application is running, you can access the Swagger documentation at:

http://localhost:8080/api/v1/swagger/index.html

To regenerate the Swagger documentation after making changes to the API, run:

cd backend
# Install swag if not already installed
go install github.com/swaggo/swag/cmd/swag@latest

# Generate swagger docs
swag init -g pkg/server/server.go

FAQ

How does LogSonic handle large log files?

LogSonic uses efficient indexing techniques to handle large log files. The backend uses the Bleve search library to create optimized indices, allowing for fast search even with gigabytes of logs.

Can I use custom log formats?

Yes, LogSonic supports custom Grok patterns for parsing log files. You can define your own patterns if your log format is not automatically detected.

Is my data sent to any servers?

No, LogSonic is completely offline. All data remains on your machine, and no internet connection is required after installation.

Support

For issues, feature requests, or questions, please create an issue on the GitHub repository.

License

LogSonic is released under the MIT License.

Quick Start

1

Clone the repository

git clone https://github.com/logsonic/logsonic
2

Install dependencies

cd logsonic
npm install
3

Follow the documentation

Check the repository's README.md file for specific installation and usage instructions.

Repository Details

Ownerlogsonic
Repologsonic
LanguageTypeScript
LicenseMIT License
Last fetched8/10/2025

Recommended MCP Servers

💬

Discord MCP

Enable AI assistants to seamlessly interact with Discord servers, channels, and messages.

integrationsdiscordchat
🔗

Knit MCP

Connect AI agents to 200+ SaaS applications and automate workflows.

integrationsautomationsaas
🕷️

Apify MCP Server

Deploy and interact with Apify actors for web scraping and data extraction.

apifycrawlerdata
🌐

BrowserStack MCP

BrowserStack MCP Server for automated testing across multiple browsers.

testingqabrowsers

Zapier MCP

A Zapier server that provides automation capabilities for various apps.

zapierautomation