tautulli_server_info
Retrieve Plex server identity, version, platform, and connection details to monitor your media server's status and configuration.
Instructions
Get Plex server identity — name, version, platform, and connection details.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- tautulli.py:373-392 (handler)The handler function tautulli_server_info which fetches and formats Plex server information.
@mcp.tool() async def tautulli_server_info() -> str: """Get Plex server identity — name, version, platform, and connection details.""" data = await _api("get_server_info") name = data.get("pms_name", "Unknown") version = data.get("pms_version", "?") platform = data.get("pms_platform", "?") ip = data.get("pms_ip", "?") port = data.get("pms_port", "?") ssl = "yes" if data.get("pms_ssl") else "no" plexpass = "yes" if data.get("pms_plexpass") else "no" return ( f"Plex Server: {name}\n" f" Version: {version}\n" f" Platform: {platform}\n" f" Address: {ip}:{port} (SSL: {ssl})\n" f" PlexPass: {plexpass}" )