AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Jellyfin

skill-hevangel-media-agent-skills-jellyfin · by hevangel

Interact with the Jellyfin media server API to list libraries, search media, get item details, export metadata, and trigger library rescans. Use when working with Jellyfin servers.

— No reviews yet
0 installs
27 views
0.0% view→install

Install

$ agentstack add skill-hevangel-media-agent-skills-jellyfin

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ● Environment & secrets Used
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-hevangel-media-agent-skills-jellyfin)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Jellyfin? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Jellyfin API

Configuration

All settings are loaded from the .env file in the workspace root.

JELLYFIN_HOST=http://localhost:8096
JELLYFIN_API_KEY=your_api_key

Reference

  • Jellyfin API documentation: https://api.jellyfin.org/
  • Python API Client: https://github.com/jellyfin/jellyfin-apiclient-python
  • Code Snippets: scripts/

Note: Scripts use config.py for credentials and client.py for client setup.

Available Scripts

| Script | Purpose | |--------|---------| | config.py | Configuration loader (from .env) | | client.py | API client setup with authentication | | list_libraries.py | List all libraries | | get_library_items.py | Get items with media type filtering | | search_media.py | Search by term, type, and year | | get_item_details.py | Full metadata for an item | | get_recently_added.py | Recently added items | | refresh_library.py | Trigger library rescan | | dump_library_to_json.py | Export library to JSON | | get_system_info.py | Server system information |

Key Patterns

API Key Authentication

from jellyfin_apiclient_python import JellyfinClient

client = JellyfinClient()
client.config.data["app.name"] = "ai_agents"
client.config.data["auth.ssl"] = False
client.authenticate(
    {"Servers": [{"AccessToken": API_KEY, "address": SERVER_URL}]},
    discover=False,
)

API Access

libraries = client.jellyfin.virtual_folders()
item = client.jellyfin.get_item(item_id)
result = client.jellyfin.search_media_items(term="Movie Name", media="Movie")

Item Types for Filtering

Movie, Series, Season, Episode, Audio, MusicAlbum, MusicArtist, Book, AudioBook, BoxSet, Playlist

Usage Examples

cd skills/jellyfin/scripts
uv run python list_libraries.py
uv run python search_media.py "Gundam" Movie
uv run python get_item_details.py 
uv run python dump_library_to_json.py 

Notes

  • Use client.py and get_jellyfin_client() as the starting point for all API scripts.
  • Temporary files go in $WORKSPACE_PATH/temp/.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.