Navigation
On this page

Jellyfin Tools

Tools for querying Jellyfin server status, browsing activity, searching media, and viewing show details.

These four tools interact with the Jellyfin media server to query status, browse activity logs, search your media library, and inspect TV show details.


server_status

Complete server overview: Jellyfin info, disk usage, per-library stats (series/movies/episodes counts), active streaming sessions, and registered users.

Parameters

This tool takes no parameters.

Usage Example

“What’s the current status of my media server?“


activity_log

Recent server activity: who watched what, logins, library changes, and other server events.

Parameters

NameTypeRequiredDescription
limitnumberNoNumber of entries to return. Defaults to 15.

Usage Example

“Show me the last 10 things that happened on Jellyfin.”


search_media

Search or list content in the Jellyfin library. Omit query to list all items of a type. Use offset to paginate through large result sets.

Parameters

NameTypeRequiredDescription
querystringNoSearch term. Omit to list all items.
typestringNoFilter by media type. One of: Movie, Series, Episode, Audio.
limitnumberNoMaximum number of results to return. Defaults to 50.
offsetnumberNoSkip this many results for pagination. Defaults to 0.

Usage Example

“List all movies in my library.”

“Search for ‘Breaking Bad’ in my library.”

“Show me the next 50 results starting from offset 50.”


show_details

Get detailed info about a TV show including seasons and episodes. For large series, use seasonNumber to fetch one season at a time, or page/pageSize to paginate episodes.

Parameters

NameTypeRequiredDescription
showIdstringYesJellyfin item ID of the show.
seasonNumbernumberNoReturn only this season number (recommended for large series).
pagenumberNoPage number (1-based). Defaults to 1.
pageSizenumberNoEpisodes per page. Defaults to 50.

Usage Example

“Show me the episode list for Breaking Bad season 3.”

“What seasons are available for The Office?”