Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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}"
        )

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/lodordev/mcp-tautulli'

If you have feedback or need assistance with the MCP directory API, please join our Discord server