Query logs from Graylog: get streams, search messages, aggregate, and get full data.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A minimal MCP (Model Context Protocol) server in JavaScript that integrates with Graylog.
search (read matching log lines across multiple streams), analyze (aggregate matches by a field, with an optional time histogram), list_fields (which fields exist), list_streams (discover readable streams), and get_message (fetch one full document)list_fields and analyze's valueContains let an agent look up real field names and values instead of inventing them, since a wrong guess returns 0 hits and reads as "no logs exist"search returns a concise projection of high-signal fields by default; opt into full documents with verboseConfigure one or more Graylog instances using numbered env vars:
| Variable | Required | Description |
|---|---|---|
GRAYLOG_BASE_URL_INSTANCE_N | yes | Graylog base URL for instance N |
GRAYLOG_API_TOKEN_INSTANCE_N | yes | API token for instance N |
GRAYLOG_LABEL_INSTANCE_N | no | Human-readable label (default: instance_N) |
Replace N with 1, 2, 3, β¦ to register as many instances as needed. Only instances with both BASE_URL and API_TOKEN set will be active.
No installation needed, npx downloads and runs the server automatically.
Or add it manually to ~/.claude.json:
Add to ~/.cursor/mcp.json:
Config file locations:
~/Library/Application Support/Claude/claude_desktop_config.json~/.config/claude-desktop/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonUse the same JSON structure shown above for Cursor.
Once configured, the tools become available and are called automatically when needed. The usual flow is to search the Default Stream (000000000000000000000001), which covers everything the token can read, then analyze to spot patterns, search to read individual lines, and get_message to inspect one hit in full. Reach for list_streams only to scope to a specific named stream. Example prompts:
Don't let the agent guess field names or values. A query on a field or value that doesn't exist matches nothing, which looks exactly like "there are no logs". list_fields answers which fields exist, and analyze with valueContains answers which values a field actually has.
List the streams the configured API token can read (id + title). Only readable ones are returned.
You usually don't need this: pass the Default Stream id 000000000000000000000001 to search/analyze to cover everything the token can read. A cluster can hold thousands of streams (the author's has 1,205), so output is capped β use titleContains when you want one specific named stream.
Parameters:
instance (string, optional): Label of the Graylog instance to query. Defaults to the first configured instance.titleContains (string, optional): Case-insensitive substring filter on the stream title (e.g. catalogue).limit (number, optional): Max streams to return. Default: 50. The Default Stream is always included and never counts against the cap.List the message fields that actually exist in the index. Use it before searching on a field you haven't seen in a result, so you never guess a field name.
A cluster indexes thousands of fields (the author's: 3,269), and near-duplicates are common β namespace_name, Pod_namespace, pod_namespace and Namespace may all exist while only one is populated by your shipper. Pass contains to narrow.
Parameters:
contains (string, optional): Case-insensitive substring filter on the field name, e.g. namespace, pod, level.limit (number, optional): Max field names to return. Default: 100.instance (string, optional): Instance label. Defaults to the first configured instance.Read matching log lines across one or more streams, merged newest-first. By default it returns a concise projection of high-signal fields (timestamp, source, level, container_name, pod_name, namespace_name, application_name, service, logger_name, name, msg, err, stack, message) plus each hit's _id/_index, with the raw message body truncated to 500 chars, this keeps the agent's context small. Set verbose: true (or pass explicit fields) to get every populated field, untruncated. Stream IDs are required, an all-streams search is not performed implicitly, because a limited-permission token would be rejected with 403 Not authorized.
name/msg/err/stack are there because a shipper that parses a JSON log line (pino, bunyan, structlog) extracts its keys into real fields. Those fields are the summary of the event, and they're cheap β the raw message body that contains them is neither, which is why it's truncated hard by default.
Reach for
analyzebeforesearch. Raw lines are the most expensive thing this server returns. A hundred repetitions of one error cost a hundred times as much viasearchas one aggregated row viaanalyze, and tell you less. Usesearchonce you know which line you want.
Tip: to search everything the token can see (including messages not routed to a named stream), pass the Default Stream id
000000000000000000000001.list_streamsalso surfaces it.
Parameters:
query (string, required): Search query, using Graylog/Elasticsearch syntax. Examples: msg:Error, namespace_name:app-payments-qa AND error, source:api-*, *.streams (string, required): Comma-separated stream IDs to search. Get them from list_streams.instance (string, optional): Label of the Graylog instance to query. Defaults to the first configured instance.searchTimeRangeInSeconds (number, optional): Relative time range in seconds. Default: 900 (15 minutes).from / to (string, optional): Absolute window in ISO-8601 UTC (e.g. 2026-07-11 14:00:00). When both are set they override the relative range, use them to investigate a known incident window.searchCountLimit (number, optional): Max number of messages. Default: 50.messageChars (number, optional): Max characters of the raw message body per hit. Default: 500. Raise it only when the detail you need lives in the raw body rather than the parsed fields.verbose (boolean, optional): Return every populated field, untruncated, instead of the concise projection. Default: false.fields (string, optional): Comma-separated explicit field list to return. Overrides the concise projection.The response is { returned, total_matched, streams, messages, note?, projection?, why_no_results? }, where total_matched is the total number of hits across the streams (may exceed returned, which is capped by searchCountLimit); when it does, note explains how to see more.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/graylog-mcp-server)<a href="https://allmcps.com/mcp/graylog-mcp-server"><img src="https://allmcps.com/api/badge/graylog-mcp-server?style=directory" alt="Graylog MCP Server on AllMCPs" /></a>