Skip to main content
Glama
heresun

OrbStack MCP Server

by heresun

orbstack_start

Start the OrbStack service to manage Docker containers, Linux VMs, and Kubernetes clusters on macOS. If already running, this action has no side effects.

Instructions

启动 OrbStack 服务。

如果 OrbStack 已在运行,此操作无副作用。

Returns: str: 启动结果

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The implementation of the orbstack_start tool handler, which runs `orbstack start` via _run_orb and returns the result.
    async def orbstack_start() -> str:
        """启动 OrbStack 服务。
    
        如果 OrbStack 已在运行,此操作无副作用。
    
        Returns:
            str: 启动结果
        """
        code, stdout, stderr = await _run_orb(["start"])
        if code != 0:
            return _format_error(stderr)
        return "OrbStack 已启动" + (f"\n{stdout}" if stdout else "")
  • The MCP tool registration for orbstack_start using the @mcp.tool decorator.
    @mcp.tool(
        name="orbstack_start",
        annotations={
            "title": "启动 OrbStack",
            "readOnlyHint": False,
            "destructiveHint": False,
            "idempotentHint": True,
            "openWorldHint": False,
        },
    )

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/heresun/orbstack-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server