Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Changelog

All notable changes to this project will be documented in this file.

## [Next release]

## [0.1.0]

### Added
- Initial developer preview release
- MCP server implementation with HTTP and stdio transports
- Vulnerability management tools:
- `get_clusters_with_orchestrator_cve` - Find CVEs in Kubernetes components
- `get_deployments_for_cve` - Find CVEs in application workloads
- `get_nodes_for_cve` - Find CVEs in node OS packages
- `list_clusters` - List all managed clusters
- Configuration via YAML files and environment variables
- Authentication support: passthrough and static modes
- TLS support with certificate verification
- HTTP/1 fallback mode for restricted network environments
- Retry logic with exponential backoff
- Multi-architecture container images (amd64, arm64, ppc64le, s390x)
- Kubernetes/OpenShift deployment via Helm chart
- OpenShift Route support with TLS

### Documentation
- Comprehensive README with quick start, configuration, and deployment guides
- Architecture documentation
- OpenShift Lightspeed integration guide
- Configuration examples
- Testing and verification guides
- Helm chart deployment instructions

[0.1.0]: https://github.com/stackrox/stackrox-mcp/releases/tag/v0.1.0
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# StackRox MCP

**Status: Developer Preview**

This project is in active development. While functional, APIs and features may change in future releases. For feedback or issues, please open a GitHub issue.

## Project Overview

StackRox MCP is a Model Context Protocol (MCP) server that provides AI assistants with access to StackRox.
Expand Down
2 changes: 1 addition & 1 deletion charts/stackrox-mcp/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: stackrox-mcp
description: A Helm chart for StackRox Model Context Protocol (MCP) Server
type: application
version: 0.1.0
appVersion: "dev"
appVersion: "0.1.0"
home: https://github.com/stackrox/stackrox-mcp
sources:
- https://github.com/stackrox/stackrox-mcp
Expand Down
Loading