6 Commits

Author SHA1 Message Date
luis d276fe1ef0 Merge pull request 'pinchflat-mcp: add pagination, downloaded filter, and delete_media tool' (#5) from fix/pinchflat-mcp-pagination into main
NixOS Configuration CI / Nix Flake Check (push) Successful in 13s
Reviewed-on: #5
2026-07-12 13:19:27 +02:00
hermes-agent 676d06f8ca audiobookshelf-mcp: fix vendorHash (from CI)
NixOS Configuration CI / Nix Flake Check (pull_request) Successful in 46s
2026-07-12 11:16:46 +00:00
hermes-agent 4856b98429 fix: remove committed pyc, add to gitignore
NixOS Configuration CI / Nix Flake Check (pull_request) Failing after 14s
2026-07-12 11:14:52 +00:00
hermes-agent d009717854 audiobookshelf-mcp: fix src hash (from CI), still need vendorHash
NixOS Configuration CI / Nix Flake Check (pull_request) Failing after 14s
2026-07-12 11:14:43 +00:00
hermes-agent 617bb9cab5 pinchflat-mcp: add pagination, downloaded filter, and delete_media tool
NixOS Configuration CI / Nix Flake Check (pull_request) Failing after 21s
- list_media: add offset and downloaded params for API pagination
- delete_media: new tool to delete downloaded files (with prevent_download option)
- Bump timeout on delete to 120s
2026-07-12 11:09:19 +00:00
luis fa32b4a941 Merge pull request 'Add pinchflat-mcp package' (#4) from feat/pinchflat-mcp into main
NixOS Configuration CI / Nix Flake Check (push) Successful in 12s
Reviewed-on: #4
2026-07-05 00:10:25 +02:00
3 changed files with 37 additions and 5 deletions
+1
View File
@@ -27,3 +27,4 @@ result-*
# Local environment overrides # Local environment overrides
.envrc.local .envrc.local
/.dir-locals.el /.dir-locals.el
__pycache__/
+2 -2
View File
@@ -12,10 +12,10 @@ buildGoModule rec {
owner = "michaeldvinci"; owner = "michaeldvinci";
repo = "audiobookshelf-mcp"; repo = "audiobookshelf-mcp";
rev = "e790d9c75085772180c95f2ec1376acc98e9282c"; rev = "e790d9c75085772180c95f2ec1376acc98e9282c";
hash = lib.fakeHash; hash = "sha256-vQR+Ej3Qtg8ehIUWnXkSayNYpqnOZPWV0TpTVPYh+io=";
}; };
vendorHash = lib.fakeHash; vendorHash = "sha256-W8hlCGf4QdFbKc3QFc9pa4MWBhnp5A5GvWFNzg0BEhw=";
meta = with lib; { meta = with lib; {
description = "MCP server for Audiobookshelf libraries, audiobooks, podcasts, authors, collections, playlists"; description = "MCP server for Audiobookshelf libraries, audiobooks, podcasts, authors, collections, playlists";
+34 -3
View File
@@ -150,11 +150,25 @@ def force_metadata_refresh(source_id: int) -> dict:
# --- Media Items --- # --- Media Items ---
@mcp.tool() @mcp.tool()
def list_media(source_id: Optional[int] = None, limit: int = 50) -> dict: def list_media(
"""List media items. Optionally filter by source_id.""" source_id: Optional[int] = None,
params = {} limit: int = 50,
offset: int = 0,
downloaded: Optional[bool] = None,
) -> dict:
"""List media items with pagination. Optionally filter by source_id or download status.
Args:
source_id: Filter to a specific source
limit: Max items to return (default 50)
offset: Skip first N items for pagination (default 0)
downloaded: If True, only return downloaded media; if False, only undownloaded
"""
params = {"limit": limit, "offset": offset}
if source_id: if source_id:
params["source_id"] = source_id params["source_id"] = source_id
if downloaded is not None:
params["downloaded"] = "true" if downloaded else "false"
return _get("/media", params=params) return _get("/media", params=params)
@@ -176,6 +190,23 @@ def force_download_media(media_id: int) -> dict:
return _post(f"/media/{media_id}/force_download") return _post(f"/media/{media_id}/force_download")
@mcp.tool()
def delete_media(media_id: int, prevent_download: bool = False) -> dict:
"""Delete a media item's downloaded files from disk.
Args:
media_id: The media item ID to delete
prevent_download: If True, prevent the item from being re-downloaded in the future
"""
params = {}
if prevent_download:
params["prevent_download"] = "true"
with httpx.Client(timeout=120) as client:
r = client.delete(f"{BASE}/media/{media_id}", headers=HEADERS, params=params)
r.raise_for_status()
return r.json()
# --- Media Profiles --- # --- Media Profiles ---
@mcp.tool() @mcp.tool()