Skip to content

Commit 823faeb

Browse files
committed
add k8s meta-mcp info
1 parent bdba60d commit 823faeb

File tree

1 file changed

+42
-3
lines changed

1 file changed

+42
-3
lines changed

docs/toolhive/guides-mcp/meta-mcp.mdx

Lines changed: 42 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,48 @@ thv list
176176

177177
## Deployment in Kubernetes
178178

179-
Meta-mcp is supported in Kubernetes enviornment. Follow
180-
[this guide](https://github.com/StacklokLabs/meta-mcp/blob/main/docs/kubernetes-integration.md)
181-
for deployment.
179+
Meta-mcp is supported in Kubernetes environment and can be deployed using Helm.
180+
181+
**Prerequisites:**
182+
183+
- Kubernetes cluster with ToolHive operator installed
184+
- Helm 3.x installed
185+
- Access to the `toolhive-system` namespace
186+
- Cluster-admin privileges or permissions to create ClusterRoles and ClusterRoleBindings (only needed for initial installation; upgrades require fewer permissions if RBAC hasn't changed)
187+
188+
**Installation:**
189+
190+
Install meta-mcp using Helm:
191+
192+
```bash
193+
helm upgrade meta-mcp oci://ghcr.io/stackloklabs/meta-mcp/meta-mcp \
194+
--version 0.0.8 \
195+
-n toolhive-system \
196+
--install
197+
```
198+
199+
:::tip[Other versions]
200+
201+
Version 0.0.8 is shown above, but other versions are available. You can browse all available versions on the [meta-mcp releases page](https://github.com/StacklokLabs/meta-mcp/releases) or list them using:
202+
203+
```bash
204+
helm show chart oci://ghcr.io/stackloklabs/meta-mcp/meta-mcp --version 0.0.8
205+
```
206+
207+
:::
208+
209+
This command will:
210+
- Install meta-mcp in the `toolhive-system` namespace
211+
- Create the necessary MCPServer custom resource
212+
- Configure meta-mcp to work with the ToolHive operator
213+
214+
**Verification:**
215+
216+
Check that meta-mcp is running:
217+
218+
```bash
219+
kubectl get mcpserver -n toolhive-system
220+
```
182221

183222
## Sample prompts
184223

0 commit comments

Comments
 (0)