From 9e3811a737ae3c4517c41ee98d5d17a9866129ae Mon Sep 17 00:00:00 2001 From: Marc Nuri Date: Wed, 23 Jul 2025 15:21:04 +0200 Subject: [PATCH] chore(doc): update README.md Configuration options (#199) Added missing entry for --port and removed deprecated options (should not be documented on the README) Signed-off-by: Marc Nuri --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index d4324e4..22263d6 100644 --- a/README.md +++ b/README.md @@ -158,8 +158,7 @@ uvx kubernetes-mcp-server@latest --help | Option | Description | |-------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `--http-port` | Starts the MCP server in Streamable HTTP mode and listens on the specified port (path /mcp). Deprecated: Please use --port. | -| `--sse-port` | Starts the MCP server in Server-Sent Event (SSE) mode and listens on the specified port (path /sse). Deprecated: Please use --port. | +| `--port` | Starts the MCP server in Streamable HTTP mode (path /mcp) and Server-Sent Event (SSE) (path /sse) mode and listens on the specified port . | | `--log-level` | Sets the logging level (values [from 0-9](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md)). Similar to [kubectl logging levels](https://kubernetes.io/docs/reference/kubectl/quick-reference/#kubectl-output-verbosity-and-debugging). | | `--kubeconfig` | Path to the Kubernetes configuration file. If not provided, it will try to resolve the configuration (in-cluster, default location, etc.). | | `--list-output` | Output format for resource list operations (one of: yaml, table) (default "table") |