Instructions for monitoring and managing MCP (Model Context Protocol) servers.
This skill provides instructions for identifying, monitoring, and debugging MCP servers in the AtlasTrinity system.
To list all currently active and connected MCP servers, DO NOT search for manual command line tools. Instead, use the dedicated health check script:
python scripts/check_mcp_health.py
This script will output:
✓ react-devtools T3 ONLINE 1 168ms
✓ googlemaps T3 ONLINE 1 120ms
...
✓ Summary: 19 online, 0 degraded, 0 offline (of 19 total)
✓ Health: 100%
To see the raw configuration of MCP servers (what command launches them, their environment variables, etc.):
cat config/mcp_servers.json.template
# OR (if deployed)
cat ~/.config/atlastrinity/mcp/config.json
If a server is reported OFFLINE in step 1:
~/.config/atlastrinity/logs/ (e.g., googlemaps_server.log if available, or brain.log).scripts/check_mcp_health.py --verbose (if supported) or just run the health check again to see if it was transient.When verifying steps related to MCP server logic:
python scripts/check_mcp_health.py to confirm the server is actually reachable.