webex_health_check
Validate Webex connectivity and diagnose bot token and room access permissions before starting automated workflows.
Instructions
Validate Webex connectivity and return a structured diagnostic status.
Checks the bot token (identity + API reachability) and, optionally, lists visible rooms to confirm room-access permissions. Designed for agents that need to self-diagnose before starting a workflow.
Args: include_rooms: When True (default), also verify room-list access.
Returns:
Standardized success response whose data contains:
- overall_status: "healthy", "degraded", or "unhealthy"
- checks: per-check result dicts keyed by check name
- duration_ms: total wall-clock time for all checks
- server_version: running MCP server version
- python_version: Python interpreter version string
``overall_status`` is "healthy" when all checks pass, "unhealthy" when
the token check fails, and "degraded" when the token is valid but a
secondary check (e.g. rooms) errors.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_rooms | No |