Journald MCP server
About
Incident forensic with log files analyzing
Details
- Author
- james116blue
- Categories
- Other, Infrastructure
Jump to
Setup
Install Journald MCP server in your MCP client (Claude Desktop, Cursor, Windsurf, and others).
Repository: https://github.com/james116blue/journald-mcp-server
Follow the installation instructions in the repository README, then restart your MCP client.
An MCP server for accessing systemd journal logs.
- List systemd units from journal logs
- List syslog identifiers from journal logs
- Get datetime of first journal entry
- Filter journal entries by datetime range (since/until)
- Filter by systemd unit or syslog identifier
- Filter by message content (case-insensitive substring matching)
- Natural language datetime parsing (e.g., "2 hours ago", "yesterday at 3pm")
- List units and identifiers within specific time ranges
Run as non-root: Give the user systemd-journal group accessusermod -aG systemd-journal $USER
- --transport: Transport protocol to use (stdio,sse, orstreamable-http). Default:stdio
- --port: Port to listen on for HTTP transport (ignored forstdiotransport). Default:3002
- --log-level: Logging level (DEBUG,INFO,WARNING,ERROR,CRITICAL). Default:INFO
-
Run with stdio transport (default, for MCP clients that communicate via stdin/stdout):
python server.py --transport streamable-http --port 8080
python server.py --transport sse --port 3000
The server provides the following MCP resources and tools:
- journal://units: List unique systemd units from journal logs (all accessible time)
- journal://syslog-identifiers: List unique syslog identifiers from journal logs (all accessible time)
- journal://first-entry-datetime: Get the datetime of the first entry in the journal
- journal://units/{since}/{until}: List unique systemd units within a specified time range
- journal://syslog-identifiers/{since}/{until}: List unique syslog identifiers within a specified time range
-
get_journal_entries: Get journal entries with datetime filtering
- Parameters:since(optional),until(optional),unit(optional),identifier(optional),message_contains(optional),limit(default: 100)
- Returns: List of entries with timestamp, unit, identifier, and message
- Example: Get logs from last 2 hours containing "error":since="2 hours ago", message_contains="error"
get_recent_logs: Get recent journal logs from the last N minutes
- Parameters:minutes(default: 60),unit(optional),limit(default: 50)
- Returns: Formatted string of recent log messages
The server uses natural language datetime parsing via thedateparserlibrary. Supported formats include:
- Relative times: "2 hours ago", "yesterday at 3pm", "last week", "now"
- Absolute times: "2024-01-15 14:30", "2024-01-15T14:30:00"
- Mixed: "today at 9am", "tomorrow 3pm"
All times are interpreted as UTC and returned in human-readable format: "YYYY-MM-DD HH:MM:SS UTC"
- Python 3.12+
- MCPFastMCP
- systemd-python for journal access
- Click for CLI interface
- dateparser for natural language datetime parsing
journald-mcp-server/ ├── journald_mcp_server/ # Main package │ ├── __init__.py │ ├── server.py # MCP server implementation │ └── datetime_utils.py # Datetime parsing and formatting utilities ├── tests/ # Test suite │ ├── __init__.py │ └── test_server.py ├── server.py # Entry point wrapper ├── pyproject.toml └── README.md
Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster.
Provides access to OpenTelemetry traces and metrics through Logfire.
Fetch logs, metrics, traces, and events from the Chronosphere observability platform.
A server for querying Loki logs from Grafana.
An MCP server for log analysis using the LogAI framework, with optional Grafana and GitHub integrations.
A Go-based server to query Grafana Loki logs using the Model Context Protocol (MCP).
Retrieve logs from the Mezmo observability platform.
Kubernetes observability and diagnostics MCP server for cluster health, workload diagnosis, logs, events, topology, audit findings, and remediation actions.
An MCP server for querying Loki logs via logcli.
Civilian situational awareness for AI deployments — real-time risk dashboards, multi-source threat correlation, anomaly detection, and automated alerting for critical infrastructure and enterprise AI systems.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



