loki-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
loki-mcp by grafana | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 141 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | MonitoringDeveloper ToolsOps & Infra | File SystemDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | this month | this month |
loki-mcp · Summary
A production-ready MCP server for querying Grafana Loki logs with comprehensive documentation and multiple deployment options.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
loki-mcp · Use cases
- Enable AI assistants to query logs across systems during debugging sessions
- Integrate log querying capabilities into AI-powered monitoring workflows
- Provide natural language access to Loki logs for non-technical team members
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
loki-mcp · Install
Installation
Building from Source
go build -o loki-mcp-server ./cmd/server
./loki-mcp-serverUsing Docker
docker build -t loki-mcp-server .
docker run --rm -i loki-mcp-serverClaude Desktop Configuration
{
"mcpServers": {
"lokiserver": {
"command": "/path/to/loki-mcp-server",
"env": {
"LOKI_URL": "http://localhost:3100",
"LOKI_ORG_ID": "your-org-id"
},
"autoApprove": ["loki_query"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.