You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,13 +116,18 @@ In this demo, I walk you through the process of _Vibe Coding_ a simple game usin
116
116
117
117
The Kubernetes MCP server can be configured using command line (CLI) arguments.
118
118
119
-
You can run the CLI executable either by using `npx` or by downloading the [latest release binary](https://github.com/manusa/kubernetes-mcp-server/releases/latest).
119
+
You can run the CLI executable either by using `npx`, `uvx`, or by downloading the [latest release binary](https://github.com/manusa/kubernetes-mcp-server/releases/latest).
120
120
121
121
```shell
122
-
# Run the Kubernetes MCP server using npx (in case you have npm installed)
122
+
# Run the Kubernetes MCP server using npx (in case you have npm and node installed)
123
123
npx kubernetes-mcp-server@latest --help
124
124
```
125
125
126
+
```shell
127
+
# Run the Kubernetes MCP server using uvx (in case you have uv and python installed)
128
+
uvx kubernetes-mcp-server@latest --help
129
+
```
130
+
126
131
```shell
127
132
# Run the Kubernetes MCP server using the latest release binary
128
133
./kubernetes-mcp-server --help
@@ -185,6 +190,8 @@ Execute a command in a Kubernetes Pod in the current or provided namespace with
0 commit comments