humio-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@humio-mcpSearch for errors in last hour in repo 'app-logs'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
HumioMCP
MCP server for querying Humio/LogScale dashboards and executing search queries.
Built with FastMCP (Python).
Features
list_dashboards — List all dashboards in a Humio repo/view, with optional name filtering
get_dashboard_queries — Extract all search queries (with time ranges) from a dashboard's widgets
execute_search — Run a search query and get results as JSON (default limit: 200 events)
Multi-cluster support via TOML config
Both relative time (
24h,7d) and ISO 8601 (2024-01-01T00:00:00Z) supported
Related MCP server: openobserve-community-mcp
Quick Start for Others
Option A: One-click VS Code config (recommended)
No clone needed. Add this to your VS Code settings.json or .vscode/mcp.json:
{
"servers": {
"humio-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"--from", "git+https://github.com/weihong-xu-hpe/humio-mcp.git",
"humio-mcp"
],
"env": {
"HUMIO_MCP_CONFIG": "${userHome}/.config/humio-mcp/config.toml"
}
}
}
}Then create the config file at ~/.config/humio-mcp/config.toml:
default_cluster = "us-west-2"
[clusters.us-west-2]
url = "https://your-humio-url.example.com/logs"
token = "your-api-token"That's it — uvx handles install and updates automatically.
Prerequisite: uv must be installed (
brew install uvorcurl -LsSf https://astral.sh/uv/install.sh | sh)
Option B: Clone and run locally
git clone https://github.com/weihong-xu-hpe/humio-mcp.git
cd humio-mcp
uv sync
cp config.example.toml config.toml
# Edit config.toml with your cluster URLs and API tokensVS Code config for local clone:
{
"servers": {
"humio-mcp": {
"type": "stdio",
"command": "uv",
"args": ["run", "--directory", "/path/to/HumioMCP", "mcp", "run", "src/humio_mcp/server.py"]
}
}
}Option C: Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"humio-mcp": {
"command": "uvx",
"args": [
"--from", "git+https://github.com/weihong-xu-hpe/humio-mcp.git",
"humio-mcp"
],
"env": {
"HUMIO_MCP_CONFIG": "/Users/yourname/.config/humio-mcp/config.toml"
}
}
}
}Configuration
Edit config.toml (or ~/.config/humio-mcp/config.toml):
default_cluster = "us-west-2"
[clusters.us-west-2]
url = "https://mira-us-west-2.cloudops.ccs.arubathena.com/logs"
token = "your-api-token"
[clusters.eu-central-1]
url = "https://mira-eu-central-1.example.com/logs"
token = "another-token"Config search order:
HUMIO_MCP_CONFIGenvironment variable./config.toml~/.config/humio-mcp/config.toml
Development
# MCP Inspector (interactive debugging)
uv run mcp dev src/humio_mcp/server.py
# Stdio mode
uv run mcp run src/humio_mcp/server.pyTools
list_dashboards
Param | Type | Required | Description |
repo | str | Yes | Repository/view name |
cluster | str | No | Cluster name (default from config) |
search_filter | str | No | Filter by name substring |
get_dashboard_queries
Param | Type | Required | Description |
repo | str | Yes | Repository/view name |
dashboard_name | str | Yes | Dashboard name |
cluster | str | No | Cluster name |
execute_search
Param | Type | Required | Description |
repo | str | Yes | Repository/view name |
query_string | str | Yes | Humio search query |
start | str | No | Start time (default: |
end | str | No | End time (default: |
cluster | str | No | Cluster name |
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables querying and analyzing Falco security events from Falcosidekick UI through MCP tools. Supports filtering events by time windows and retrieving full event details for security monitoring and incident investigation.Last updated
- AlicenseBqualityCmaintenanceA read-only MCP server for OpenObserve Community Edition that works over the REST API. Provides tools for searching logs, traces, stream schemas, and dashboards - no Enterprise license required.Last updated816GPL 3.0
- Alicense-qualityDmaintenanceEnables MCP-compatible agents to interact with Grafana instances for searching, creating, and updating dashboards, exploring logs via Loki, querying datasources, managing alerts, incidents, and on-call shifts, and accessing observability data.Last updated8Apache 2.0
- AlicenseAqualityCmaintenanceEnables querying logs, traces, and metrics from multiple OpenObserve instances via MCP tools, with parallel execution, batching, and caching.Last updated61957MIT
Related MCP Connectors
Query metrics, targets, entities, and team data in your Steep workspace via MCP.
Remote MCP for GenAI span mapping, provider normalization, dashboard schemas, and receipts.
A paid remote MCP for AI SDK data query MCP, built to return verdicts, receipts, usage logs, and aud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/weihong-xu-hpe/humio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server