This release adds 2 notable features for engineering teams evaluating rollout.
✓ No known CVEs patched in this version
Summary
AI summaryAdded stream_build_console tool for live console output from running Zuul builds.
Full changelog
What's New
stream_build_console — read live console output from RUNNING Zuul builds.
Until now, all log tools (tail_build_log, get_build_log, browse_build_logs) required log_url which only exists after post-run completes. When a job is running, there was no way to see its output. This tool connects to Zuul's WebSocket console-stream endpoint, buffers for N seconds, and returns the last M lines (tail behavior).
Install
pip install mcp-zuul[console] # adds websockets dependency
The [console] extra is optional — users who don't need live streaming skip the dependency. The tool returns a clear install message when called without it.
Usage
stream_build_console(uuid="abc123", timeout=10, lines=50)
timeout: seconds to buffer (default 10, max 30)lines: tail line count (default 100, max 500)- Accepts
urlparam (paste a Zuul build URL) like other build tools
Added
- New tool:
stream_build_console— live console output from RUNNING builds via WebSocket - New optional extra:
[console]installswebsockets>=14.0 _no_log_url_errornow suggestsstream_build_consolefor IN_PROGRESS builds
Technical Details
- Auth via JWT token in the WebSocket message body (not HTTP headers), verified against upstream Zuul source
- Line reassembly across chunk boundaries (Zuul streams raw 4KB chunks from the executor's finger protocol)
- SSL:
wss://with configurable cert verification,ws://for plain connections - Error handling: specific messages for 403, 404, close codes 4000/4011, timeout, connection refused
- 33 tests, 99% coverage
Full Changelog: https://github.com/imatza-rh/mcp-zuul/blob/main/CHANGELOG.md#060---2026-04-26
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
About imatza-rh/mcp-zuul
Zuul CI integration with 14 tools for build failure analysis, log search, pipeline status, and job configuration.
Related context
Beta — feedback welcome: [email protected]