mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
feat(tui-gateway): include per-MCP-server status in session.info payload
This commit is contained in:
parent
fd6ffc777f
commit
202b78ec68
1 changed files with 5 additions and 0 deletions
|
|
@ -588,6 +588,11 @@ def _session_info(agent) -> dict:
|
|||
info["skills"] = get_available_skills()
|
||||
except Exception:
|
||||
pass
|
||||
try:
|
||||
from tools.mcp_tool import get_mcp_status
|
||||
info["mcp_servers"] = get_mcp_status()
|
||||
except Exception:
|
||||
info["mcp_servers"] = []
|
||||
try:
|
||||
from hermes_cli.banner import get_update_result
|
||||
from hermes_cli.config import recommended_update_command
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue