mo-silent/loki-mcp-server
If you are the rightful owner of loki-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Loki MCP Server is a Model Context Protocol server that integrates AI assistants with Grafana Loki for advanced log analysis and monitoring.
Loki MCP Server
A Model Context Protocol (MCP) server that provides AI assistants with the ability to query and analyze logs from Grafana Loki. This server enables seamless integration between AI assistants and Loki, allowing for intelligent log analysis, troubleshooting, and monitoring workflows.
Architecture
āāāāāāāāāāāāāāāāāāā MCP Protocol āāāāāāāāāāāāāāāāāāā HTTP/API āāāāāāāāāāāāāāāāāāā
ā AI Assistant ā āāāāāāāāāāāāāāāāāāāŗ ā Loki MCP Server ā āāāāāāāāāāāāāāāŗā Grafana Loki ā
ā (Claude et al)ā ā ā ā Log System ā
āāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāā āāāāāāāāāāāāāāāāāāā
Features
- š Query Logs: Execute LogQL queries against Loki with support for range and instant queries
- š Search Logs: Keyword-based log searching with advanced filtering and pattern matching
- š·ļø Label Discovery: Retrieve available log labels and label values for stream exploration
- š¤ MCP Protocol: Fully compatible with Model Context Protocol for AI assistant integration
- ā” Performance: Built-in caching and optimized query execution
- š”ļø Security: Support for multiple authentication methods (basic auth, bearer tokens)
- š Rich Results: Structured output with timestamps, labels, and context information
Installation
From Source
- Clone the repository:
git clone <repository-url>
cd loki-mcp-server
- Install the package:
pip install -e .
Development Installation
For development work, install with development dependencies:
pip install -e ".[dev]"
Requirements
- Python 3.8 or higher
- Access to a Grafana Loki instance
- Network connectivity to your Loki server
Configuration
Environment Variables
Configure the server using these environment variables:
Variable | Required | Description | Example |
---|---|---|---|
LOKI_URL | Yes | URL of your Loki instance | http://localhost:3100 |
LOKI_USERNAME | No | Username for basic authentication | admin |
LOKI_PASSWORD | No | Password for basic authentication | password123 |
LOKI_BEARER_TOKEN | No | Bearer token for authentication | your-token-here |
Configuration Examples
Local Development
export LOKI_URL="http://localhost:3100"
Production with Basic Auth
export LOKI_URL="https://loki.example.com"
export LOKI_USERNAME="service-account"
export LOKI_PASSWORD="secure-password"
Production with Bearer Token
export LOKI_URL="https://loki.example.com"
export LOKI_BEARER_TOKEN="your-api-token"
Configuration File (Optional)
You can also use a .env
file in your project directory:
LOKI_URL=http://localhost:3100
LOKI_USERNAME=admin
LOKI_PASSWORD=password123
Usage
Starting the Server
Start the MCP server using the command line:
loki-mcp-server
The server will start and listen for MCP protocol messages via stdio.
Integration with AI Assistants
Add the server to your AI assistant's MCP configuration. Example for Claude Desktop:
{
"mcpServers": {
"loki": {
"command": "loki-mcp-server",
"env": {
"LOKI_URL": "http://localhost:3100"
}
}
}
}
Available Tools
The server provides three main tools for log analysis:
1. query_logs
Execute LogQL queries directly against Loki.
Parameters:
query
(required): LogQL query stringstart
(optional): Start time for range queriesend
(optional): End time for range querieslimit
(optional): Maximum entries to return (default: 100)direction
(optional): Query direction ('forward' or 'backward')
2. search_logs
Search logs using keywords with advanced filtering.
Parameters:
keywords
(required): List of keywords to search forlabels
(optional): Label filters as key-value pairsstart
(optional): Start time for search rangeend
(optional): End time for search rangelimit
(optional): Maximum entries to return (default: 100)case_sensitive
(optional): Case-sensitive search (default: false)operator
(optional): Logical operator ('AND' or 'OR')
3. get_labels
Discover available labels and their values.
Parameters:
label_name
(optional): Specific label to get values forstart
(optional): Start time for label queryend
(optional): End time for label queryuse_cache
(optional): Use cached results (default: true)
Development
Setup Development Environment
- Clone and install:
git clone <repository-url>
cd loki-mcp-server
pip install -e ".[dev]"
- Run tests:
pytest
- Run specific test suites:
# Unit tests only
pytest tests/unit/
# Integration tests only
pytest tests/integration/
# Performance tests
pytest tests/performance/
Code Quality
Run linting and formatting:
# Format code
black .
isort .
# Type checking
mypy app/
# Linting
ruff check .
Project Structure
loki-mcp-server/
āāā app/ # Main package
ā āāā __init__.py
ā āāā main.py # CLI entry point
ā āāā server.py # MCP server implementation
ā āāā config.py # Configuration management
ā āāā loki_client.py # Basic Loki client
ā āāā enhanced_client.py # Enhanced client with features
ā āāā query_builder.py # LogQL query building
ā āāā error_handler.py # Error classification and handling
ā āāā logging_config.py # Logging setup
ā āāā tools/ # MCP tools
ā āāā query_logs.py # LogQL query tool
ā āāā search_logs.py # Keyword search tool
ā āāā get_labels.py # Label discovery tool
āāā tests/ # Test suite
āāā pyproject.toml # Project configuration
āāā README.md # This file
Testing
The project includes comprehensive tests:
- Unit Tests: Test individual components in isolation
- Integration Tests: Test MCP protocol and Loki integration
- Performance Tests: Benchmark query performance
- Mock Tests: Test with simulated Loki responses
Run all tests:
pytest
Run with coverage:
pytest --cov=app --cov-report=html
Troubleshooting
Common Issues
Connection Errors
- Verify
LOKI_URL
is correct and accessible - Check firewall and network connectivity
- Ensure Loki is running and healthy
Authentication Errors
- Verify credentials are correct
- Check if Loki requires authentication
- Ensure bearer token is valid and not expired
Query Errors
- Validate LogQL syntax
- Check label names and values exist
- Verify time range is reasonable
Debug Mode
Enable debug logging by setting:
export PYTHONPATH=.
python -m app.main --debug
Getting Help
- Check the troubleshooting guide in
docs/troubleshooting.md
- Review example configurations in
examples/
- Run the test suite to verify your setup
- Check Loki server logs for additional context
License
MIT License - see LICENSE file for details.