orbstack_k8s_start
Start the lightweight single-node Kubernetes cluster built into OrbStack to manage containerized applications on macOS.
Instructions
启动 OrbStack 内置的 Kubernetes 集群。
OrbStack 提供轻量级的单节点 K8s 集群。
Returns: str: 启动结果
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/orbstack_mcp/server.py:962-980 (handler)The implementation of the 'orbstack_k8s_start' tool. It is registered using the @mcp.tool decorator and calls the internal '_run_orb' function to execute the Kubernetes start command.
@mcp.tool( name="orbstack_k8s_start", annotations={ "title": "启动 Kubernetes", "readOnlyHint": False, "destructiveHint": False, "idempotentHint": True, "openWorldHint": False, }, ) async def orbstack_k8s_start() -> str: """启动 OrbStack 内置的 Kubernetes 集群。 OrbStack 提供轻量级的单节点 K8s 集群。 Returns: str: 启动结果 """ code, stdout, stderr = await _run_orb(["k8s", "start"], timeout=120)