Skip to main content
Glama
srgsanky

Personal Library MCP Server

by srgsanky

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_booksB

Lists books in the library. Set unread_only=True to see only the books you haven't read yet.

add_bookC

Adds a new book to the library.

update_book_statusB

Updates the owned and/or read status of a book by ISBN.

search_booksB

Searches for books by name or ISBN.

delete_bookB

Removes a book from the library.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
list_books_resourceReturns the list of all books in the database in JSON format.
list_unread_books_resourceReturns the list of unread books (reading list) in JSON format.

TDQS

A3.5/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose with no ambiguity: add_book, delete_book, list_books, search_books, and update_book_status each target specific operations in the library domain. The descriptions reinforce this clarity, such as list_books filtering unread books and update_book_status handling status changes, preventing misselection.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (e.g., add_book, delete_book, list_books). There are no deviations in style or convention, making the set predictable and easy to understand for an agent.

Tool Count5/5

With 5 tools, this server is well-scoped for a personal library domain. Each tool earns its place by covering core operations like adding, deleting, listing, searching, and updating books, without being overly sparse or bloated.

Completeness4/5

The tool set provides strong coverage for basic CRUD operations in a library context, including create (add_book), read (list_books, search_books), update (update_book_status), and delete (delete_book). A minor gap is the lack of a tool for editing book details beyond status (e.g., title or author), but agents can work around this with the existing tools.

Maintenance

ActivityInactive
ResponsivenessNo issues