Skip to main content
Glama

get_gui_url

Retrieve the live event viewer dashboard URL to monitor real-time CLI agent tasks and workflows through a web interface.

Instructions

Get the GUI dashboard URL. Returns the HTTP URL where the live event viewer is accessible.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler for the 'get_gui_url' tool. Checks if GUI manager has a URL and returns it as text content, otherwise returns a message indicating GUI unavailability.
    # 处理 get_gui_url 工具 if name == "get_gui_url": if gui_manager and gui_manager.url: return [TextContent(type="text", text=gui_manager.url)] return [TextContent(type="text", text="GUI not available or URL not ready")]
  • Registration of the 'get_gui_url' tool in the list_tools() decorator method, conditionally added if gui_manager is provided. Includes inline schema with no input properties.
    # 添加 get_gui_url 工具 if gui_manager: tools.append( Tool( name="get_gui_url", description="Get the GUI dashboard URL. Returns the HTTP URL where the live event viewer is accessible.", inputSchema={"type": "object", "properties": {}, "required": []}, ) )
  • Input schema for 'get_gui_url' tool: an empty object (no parameters required).
    inputSchema={"type": "object", "properties": {}, "required": []},

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/shiharuharu/cli-agent-mcp'

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