Skip to main content
Glama

update_library_book

Update an existing book's fields: change status, rating, review, dates, or current page. Setting rating/review publishes the entry.

Instructions

Update one or more fields of a book already in the library. Supply any subset — only the fields you pass change. Special behavior: current_page records a reading-progress log entry (this is what feeds get_reading_stats), and setting rating or review publishes that entry publicly. Returns the updated row; errors with 404 if the book is not in the library (add it first). When to use: change fields or log progress for a book ALREADY on a shelf. Add it first with add_book_to_library; remove it with remove_book_from_library. Requires SANSFICTION_TOKEN (a bearer token from https://sansfiction.com/docs/agents).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ratingNoYour rating on a 0–5 scale. Setting it publishes the entry.
reviewNoFree-text review. Setting it publishes the entry.
statusNoMove the book to this shelf.
book_idYesCatalog book UUID of a book already on one of your shelves.
started_atNoDate you started reading, ISO 8601 date (YYYY-MM-DD).
finished_atNoDate you finished reading, ISO 8601 date (YYYY-MM-DD).
current_pageNoCurrent page number. Passing this appends a reading-progress log entry used by get_reading_stats; it does not merely overwrite a field.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed12 schema fields changedv1.0.2
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / properties / book_id / description
      Added value: +"Catalog book UUID of a book already on one of your shelves."
    • addedInput schema / properties / current_page / description
      Added value: +"Current page number. Passing this appends a reading-progress log entry used by get_reading_stats; it does not merely overwrite a field."
    • addedInput schema / properties / current_page / minimum
      Added value: +0
    • changedInput schema / properties / current_page / type
      Previous value: -"number"New value: +"integer"
    • addedInput schema / properties / finished_at / description
      Added value: +"Date you finished reading, ISO 8601 date (YYYY-MM-DD)."
    • addedInput schema / properties / rating / description
      Added value: +"Your rating on a 0–5 scale. Setting it publishes the entry."
    • addedInput schema / properties / rating / maximum
      Added value: +5
    • addedInput schema / properties / rating / minimum
      Added value: +0
    • addedInput schema / properties / review / description
      Added value: +"Free-text review. Setting it publishes the entry."
    • addedInput schema / properties / started_at / description
      Added value: +"Date you started reading, ISO 8601 date (YYYY-MM-DD)."
    • addedInput schema / properties / status / description
      Added value: +"Move the book to this shelf."
  2. First observedv1.0.0

TDQS

A4.9/5.0
Behavior5/5

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

Annotations declare readOnlyHint=false and destructiveHint=false, but the description adds critical behavioral context: partial update semantics ('only the fields you pass change'), special side effects (current_page creates a log entry for get_reading_stats, rating/review publish publicly), error behavior (404 if not found), and return value (updated row). This far exceeds annotation coverage.

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

Conciseness5/5

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

The description is a single, well-structured paragraph of 4-5 sentences. It front-loads the core purpose, then layers special behavior, return value, error condition, usage guidance, and auth requirement. Every sentence adds distinct value with no redundancy.

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

Completeness5/5

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

Despite no output schema, the description covers: partial update semantics, special behaviors for specific fields, return value ('Returns the updated row'), error condition (404), prerequisites (book must exist), usage guidance with sibling references, and authentication requirement (SANSFICTION_TOKEN). For a tool with 7 parameters and complex side effects, this is complete.

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

Parameters4/5

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

Schema description coverage is 100% so baseline is 3. The description adds value by stating 'Supply any subset — only the fields you pass change,' which clarifies the partial update model. It also explains the special semantics of current_page, rating, and review beyond their schema descriptions. One point above baseline for this added clarity.

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 opens with a specific verb+resource: 'Update one or more fields of a book already in the library.' It distinguishes from sibling tools by naming add_book_to_library and remove_book_from_library, and mentions that current_page feeds get_reading_stats, making its role clear against other library tools.

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

Usage Guidelines5/5

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

Explicit guidance: 'When to use: change fields or log progress for a book ALREADY on a shelf. Add it first with add_book_to_library; remove it with remove_book_from_library.' Also notes error 404 if book not in library, reinforcing prerequisite. No ambiguity.

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

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/fgbytes/sansfiction-mcp'

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