Skip to main content
Glama
heresun

OrbStack MCP Server

by heresun

orbstack_status

Check OrbStack's operational status and version details to verify its functionality on macOS.

Instructions

获取 OrbStack 的运行状态信息。

返回 OrbStack 是否正在运行、版本等基本状态。

Returns: str: OrbStack 状态信息

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function `orbstack_status` executes the `orb status` command and returns the output.
    async def orbstack_status() -> str:
        """获取 OrbStack 的运行状态信息。
    
        返回 OrbStack 是否正在运行、版本等基本状态。
    
        Returns:
            str: OrbStack 状态信息
        """
        code, stdout, stderr = await _run_orb(["status"])
        if code != 0:
            return _format_error(stderr, "请确认 OrbStack 已安装: brew install orbstack")
        return f"OrbStack 状态:\n{stdout}"
  • Registration of the `orbstack_status` tool using the @mcp.tool decorator.
    @mcp.tool(
        name="orbstack_status",
        annotations={
            "title": "OrbStack 状态查询",
            "readOnlyHint": True,
            "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