registry_snippet.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "tool_id": "runcomfy_check_status",
  3. "name": "RunComfy Check Status",
  4. "description": "获取当前用户的 RunComfy 机器列表和状态。可以查看是否已有机房资源,防止重复拉起新机器。",
  5. "category": "cloud",
  6. "backend_runtime": "local",
  7. "group_ids": [
  8. "runcomfy_lifecycle"
  9. ],
  10. "input_schema": {
  11. "type": "object",
  12. "properties": {
  13. "server_id": {
  14. "type": "string",
  15. "description": "可选。指定具体机器 ID 查询。为空时查询名下所有机器列表。"
  16. }
  17. }
  18. },
  19. "output_schema": {
  20. "type": "object",
  21. "properties": {
  22. "total": {
  23. "type": "integer",
  24. "description": "存在的机器总量"
  25. },
  26. "servers": {
  27. "type": "array",
  28. "items": {
  29. "type": "object"
  30. },
  31. "description": "机器状态列表,包括 server_id, current_status, main_service_url 等详细信息"
  32. }
  33. },
  34. "required": [
  35. "total",
  36. "servers"
  37. ]
  38. },
  39. "stream_support": false
  40. },