Skip to main content

Logz.io MCP Server

The Logz.io Public API MCP (Model Context Protocol) server allows LLM clients (Claude, Cursor, ChatGPT, etc.) to access observability data - logs, metrics, dashboards, and alerts, in a standardized way. With MCP, AI agents can fetch context and trigger actions without custom integrations.

Prerequisites​

  • A Logz.io API token (create in your Logz.io account settings).
  • A Metrics API token (create via API).
  • A supported LLM client with MCP integration. Setup instructions vary per client.

Setup​

The steps for adding the Logz.io MCP server depend on your client. Refer to each client's instructions on how to attach the Logz.io MCP server to your LLM.

Below is a generic example configuration:

{
"logz.io public api": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.logz.io/mcp",
"--header",
"X-API-TOKEN:<<YOUR-LOGZIO-API-TOKEN>>",
"--header",
"X-METRIC-API-TOKEN:<<YOUR-LOGZIO-METRIC-API-TOKEN>>"
]
}
}

Replace <<YOUR-LOGZIO-API-TOKEN>> and <<YOUR-LOGZIO-METRIC-API-TOKEN>> with your actual tokens.

The domain prefix (api) is region-specific. Those are the regions available:

  • https://api.logz.io/mcp (US) us-east-1
  • https://api-eu.logz.io/mcp (EU) eu-central-1
  • https://api-uk.logz.io/mcp (UK) eu-west-2
  • https://api-au.logz.io/mcp (AP) ap-southeast-2
  • https://api-jp.logz.io/mcp (AP) ap-northeast-1
  • https://api-ca.logz.io/mcp (CA) ca-central-1

After setup is complete, you can query your Logz.io data. Ask questions about your logs, metrics, dashboards, or alerts - the MCP server will expose the right tools so your client can fetch results in context.

Main dashboard

Available tools​

The MCP server exposes tools grouped by domain. Each tool follows the MCP request/response schema.

Account management​

Tools for managing and retrieving account information:

ToolDescriptionParametersAPI Link
get_account_infoRetrieve account name and ID for the current token.NoneLink
get_associated_accountsList all accounts associated with the current account (including sub-accounts for owners).None
get_metrics_accountsList all metrics accounts with details.NoneLink

Metrics management​

Tools for querying metrics:

ToolDescriptionParametersAPI Link
query_prometheus_metricsRun a PromQL query at a single timestamp.query (string, required), time (string, optional), timeout (string, optional)Link
query_prometheus_metrics_rangeRun a PromQL query over a time range.query (string, required), start (string, required), end (string, required), step (string, required), timeout (string, optional)Link
get_available_metricsList available Prometheus metric names.None
get_metric_labelsList available labels for a metric.metric_name (string, required)Link

Logs management​

Tools for searching, filtering, and managing logs:

ToolDescriptionParametersAPI Link
search_logsSearch logs with Elasticsearch DSL.query (object, required), size (int, optional), from (int, optional), sort (array, optional) , day_offset(int 0 or positive, optional)Link
scroll_logsScroll through large sets of log data.query (object, optional), scroll_id (string, optional), size (int, optional), scroll (string, optional)Link
search_logs_simpleFull-text search across all log fields.search_term (string, required), size (int, optional), from (int, optional)Link
search_logs_by_timestampSearch logs within a specific time range.start_time (string, required), end_time (string, required), search_term (string, optional), size (int, optional), from (int, optional)Link
get_log_structuresGet the 40 most frequent log record structures.None
get_all_log_typesList all log types available.NoneLink
retrieve_drop_filtersRetrieve all configured drop filters.NoneLink

Dashboards & folders​

Tools for creating and managing dashboards and dashboard folders:

ToolDescriptionParametersAPI Link
get_all_dashboardsList all dashboards with UIDs.NoneLink
get_dashboard_by_idRetrieve a dashboard by UID.folder_id (string, required), uid (string, required)Link
create_dashboardCreate a dashboard from configuration.folder_id (string, required), dashboard_config (object, required)Link
update_dashboardUpdate a dashboard.folder_id (string, required), uid (string, required), dashboard_config (object, required)Link
move_dashboardMove a dashboard to a different folder.uid (string, required), target_folder_id (string, required)Link
get_all_dashboard_foldersList all dashboard folders.with_dashboards (string, optional)Link
create_dashboard_folderCreate a new dashboard folder.name (string, required)Link
get_dashboard_schema_exampleRetrieve an example dashboard schema.None

Alerts & insights​

Tools for alerts and insights:

ToolDescriptionParametersAPI Link
get_all_alertsList all configured alerts.NoneLink
get_triggered_alertsList all triggered alerts.NoneLink
get_insightsGet insights matching criteria.startDate (int, optional), endDate (int, optional), size (int, optional, 1–100), search (string, optional)Link

Best practices​

  • Always confirm which client you are using and follow its MCP setup guide.
  • Use ISO-8601/RFC3339 timestamps for metrics and log queries.
  • Start with smaller query sizes to validate setup before scaling.
  • Secure your tokens; do not hard-code in public repos.

OAuth 2.0 Support for Logz.io MCP Server​

The MCP server supports OAuth 2.0 Authorization Code flow with PKCE, allowing third-party tools such as AWS Bedrock Agent to connect without manually sharing static API tokens.

Existing integrations that pass X-API-Token directly continue to work unchanged.


How it works​

AWS Bedrock Agent 
or Similar Client MCP Server User
| | |
|── GET /.well-known/... ────────>| |
|<─ OAuth metadata ───────────────| |
| | |
|── POST /register ───────────────>| |
|<─ { client_id, client_secret } ─| |
| | |
|── redirect user to /authorize ──────────────────────────────>|
| |<── enters Logz.io token ─|
|<── redirect with ?code=... ──────────────────────────────────|
| | |
|── POST /token (code + PKCE) ────>| |
|<─ { access_token } ─────────────| |
| | |
|── POST /mcp Authorization: Bearer <token> ──────────────>|
  1. The agent discovers OAuth metadata at /.well-known/oauth-authorization-server.
  2. The agent registers as a client via POST /register.
  3. The user is redirected to /authorize where they enter their Logz.io API token.
  4. The server issues an authorization code and redirects back to the agent.
  5. The agent exchanges the code for a JWT access token via POST /token.
  6. The agent attaches Authorization: Bearer <token> to every MCP request.
  7. The server decrypts the token and injects the Logz.io API token transparently.

The Logz.io API token is never sent to the agent — it is encrypted inside the JWT and only the MCP server can read it.


For additional help, contact Logz.io's Support.


Any use of Logz.io's MCP is subject to our Terms of Use.