Skip to main content
Glama

bookshelf_media_library

Manage your Bookshelf media library: pass an operation and arguments dict to read, write, bulk update, or delete authors, books, bookfiles, editions, and series.

Instructions

bookshelf media library operations on Bookshelf. Pass operation and an arguments dict matching that operation's parameters.

  • bookshelf_add_books_to_shelf(body={}) — Add the given books to a Goodreads/Hardcover shelf. Body is a BookshelfResource with bookshelfId and bookIds.

  • bookshelf_bulk_delete_author(body={}) — Bulk delete author editor. DESTRUCTIVE: this deletes data.

  • bookshelf_bulk_delete_book(body={}) — Bulk delete book editor. DESTRUCTIVE: this deletes data.

  • bookshelf_bulk_delete_bookfile(body={}) — Bulk delete bookfile bulk. DESTRUCTIVE: this deletes data.

  • bookshelf_bulk_update_author(body={}) — Bulk update author editor. WRITE: this modifies your Bookshelf instance.

  • bookshelf_bulk_update_book(body={}) — Bulk update book editor. WRITE: this modifies your Bookshelf instance.

  • bookshelf_bulk_update_bookfile(body={}) — Bulk update bookfile editor. WRITE: this modifies your Bookshelf instance.

  • bookshelf_commit_manual_import(body=[]) — Commit manual imports for the given files. Body is a list of ManualImportUpdateResource. WRITE: this modifies your Bookshelf instance.

  • bookshelf_create_author(body={}) — Create author. WRITE: this modifies your Bookshelf instance.

  • bookshelf_create_book(body={}) — Create book. WRITE: this modifies your Bookshelf instance.

  • bookshelf_delete_author(id, delete_files=False, add_import_list_exclusion=False) — Delete author. Query params: deleteFiles, addImportListExclusion. DESTRUCTIVE: this deletes data.

  • bookshelf_delete_book(id, delete_files=False, add_import_list_exclusion=False) — Delete book. Query params: deleteFiles, addImportListExclusion. DESTRUCTIVE: this deletes data.

  • bookshelf_delete_bookfile(id) — Delete bookfile. DESTRUCTIVE: this deletes data.

  • bookshelf_get_author(id) — Fetch a single author by id.

  • bookshelf_get_book(id) — Fetch a single book by id.

  • bookshelf_get_book_overview(id) — Fetch a single book overview by id.

  • bookshelf_get_bookfile(id) — Fetch a single bookfile by id.

  • bookshelf_get_parse(title=None) — Parse a file or release title and show how Bookshelf interprets it.

  • bookshelf_get_rename(author_id=None, book_id=None) — List proposed renames for an author or book (files that would be renamed on the next rename task).

  • bookshelf_get_retag(author_id=None, book_id=None) — List proposed file retags for an author or book.

  • bookshelf_list_author() — List author.

  • bookshelf_list_book(author_id=None, book_ids=None, title_slug=None, include_all_author_books=False) — List book. Query params: authorId, bookIds, titleSlug, includeAllAuthorBooks.

  • bookshelf_list_bookfile(author_id=None, book_file_ids=None, book_id=None, unmapped=None) — List bookfile. Query params: authorId, bookFileIds, bookId, unmapped.

  • bookshelf_list_edition(book_id=None) — List edition. Query params: bookId.

  • bookshelf_list_manualimport(folder=None, download_id=None, author_id=None, filter_existing_files=True, replace_existing_files=True) — List manualimport. Query params: folder, downloadId, authorId, filterExistingFiles, replaceExistingFiles.

  • bookshelf_list_series(author_id=None) — List series. Query params: authorId.

  • bookshelf_lookup_author(term=None) — Search the metadata provider for authors by term.

  • bookshelf_lookup_book(term=None) — Search the metadata provider for books by term.

  • bookshelf_search(term=None) — Search for new books/authors on the metadata provider by term and return the matches to add.

  • bookshelf_update_author(id, move_files=False, body={}) — Update author. Query params: moveFiles. WRITE: this modifies your Bookshelf instance.

  • bookshelf_update_book(id, body={}) — Update book. WRITE: this modifies your Bookshelf instance.

  • bookshelf_update_bookfile(id, body={}) — Update bookfile. WRITE: this modifies your Bookshelf instance.

  • bookshelf_update_books_monitored(body={}) — Set the monitored state of books in bulk. Body is a BooksMonitoredResource with bookIds and monitored.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
argumentsNo
operationYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Install Server

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the transparency burden. It explicitly labels destructive operations with 'DESTRUCTIVE: this deletes data' and write operations with 'WRITE: this modifies your Bookshelf instance.' It also clarifies read operations with 'Fetch'/'List' and provides parameter hints, though it does not cover auth, rate limits, or return details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is lengthy due to 33 sub-operations, but it is well-structured as a bulleted list with each line containing essential info. The purpose is front-loaded, and every entry earns its place. It could be slightly more concise, but the complexity justifies the length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers all operations, flags side effects, and provides parameter hints, making it quite complete. An output schema exists for return values, so the description does not need to explain them. However, some operation descriptions are terse (e.g., 'List author.'), and body parameters are not fully specified for all operations, leaving minor gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema only defines `operation` and a generic `arguments` object, so parameter details are entirely absent. The description compensates by listing each operation's parameters (e.g., `bookshelf_delete_author(id, delete_files=False, add_import_list_exclusion=False)`), noting query params, and describing body structures for some operations. This adds critical meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'bookshelf media library operations on Bookshelf' and enumerates all sub-operations, making it easy to understand the tool's scope. It distinguishes itself from sibling tools by focusing on media library actions, and the list of operations provides a specific verb+resource for each.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied by the list of operations, but there is no explicit statement about when to use this tool vs alternatives or when not to use it. The description provides context (media library operations) but lacks guidance on exclusions or preferred tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Other Tools

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/arr-mcps/bookshelf-mcp'

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