| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "tool_id": "runcomfy_check_status",
- "name": "RunComfy Check Status",
- "description": "获取当前用户的 RunComfy 机器列表和状态。可以查看是否已有机房资源,防止重复拉起新机器。",
- "category": "cloud",
- "backend_runtime": "local",
- "group_ids": [
- "runcomfy_lifecycle"
- ],
- "input_schema": {
- "type": "object",
- "properties": {
- "server_id": {
- "type": "string",
- "description": "可选。指定具体机器 ID 查询。为空时查询名下所有机器列表。"
- }
- }
- },
- "output_schema": {
- "type": "object",
- "properties": {
- "total": {
- "type": "integer",
- "description": "存在的机器总量"
- },
- "servers": {
- "type": "array",
- "items": {
- "type": "object"
- },
- "description": "机器状态列表,包括 server_id, current_status, main_service_url 等详细信息"
- }
- },
- "required": [
- "total",
- "servers"
- ]
- },
- "stream_support": false
- },
|