F
licenseNot graded
qualityC
maintenanceEnables users to search and explore a bookstore catalog including books, authors, categories, stock, prices, and recommendations through natural language.
-
No user-submitted related servers found.
Scored across 2 tools
search_books queries the catalog and returns a list, while get_book fetches a single record by ID or SKU. Their purposes are clearly distinct and mutually exclusive.
Both tools follow the verb_noun pattern: search_books and get_book. The naming is simple, consistent, and predictable.
With only 2 tools, the server feels thin for a book catalog, but for a focused search-and-detail API it could be sufficient. It is on the low end of reasonable.
The server covers the core read operations (list/search and detail) but lacks browsing by category, listing all copies, or any advanced filtering. The domain is discoverable and basic needs are met, but notable gaps exist.