Book Search (Open Library)
Server Details
Search books and authors across Open Library, the Internet Archive open catalog.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 2 of 2 tools scored.
Both tools are clearly distinct: one searches for authors, the other for books. Although search_books can return books by author name, the result types are different, so an agent can easily choose the right tool.
Both tools follow the same verb_noun pattern: search_ + plural entity. This is consistent and predictable.
With only two tools, the server feels thin for a book search domain. It is borderline but acceptable for a narrow search-only purpose.
Book and author search are covered, but there are no get-by-ID endpoints. Agents cannot fetch specific records after searching, which is a notable gap in the lifecycle.
Available Tools
2 toolssearch_authorsARead-onlyInspect
Search authors by name. Returns author records (name, birth date, top work, work count) matching the query. Returns: Matching author records..
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Author name to search for, e.g. "Ursula K. Le Guin". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds value by listing the returned fields (name, birth date, top work, work count) and confirming the search query semantics. It does not mention pagination or edge cases, but for a simple search this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short but contains redundancy: the first sentence already states that it returns author records with fields, and the second 'Returns: Matching author records..' adds no new information and has awkward punctuation. It is concise overall but not maximally efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with one well-defined parameter and strong annotations, the description provides enough context: what the tool does, what fields it returns, and an example parameter. No output schema exists, but the return fields are listed, making it reasonably complete for an agent to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage, with the parameter q described as 'Author name to search for, e.g. "Ursula K. Le Guin".' The description adds little beyond the schema, essentially restating 'by name.' Baseline 3 is appropriate because the schema already provides strong semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Search authors by name.' This clearly distinguishes it from the sibling tool search_books, which presumably searches books. It also specifies the return fields, further clarifying its purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use this tool: whenever searching for authors by name. The sibling tool search_books suggests an alternative, but the description does not explicitly contrast them. Still, the context is clear with no exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_booksARead-onlyInspect
Search books by keyword. Full-text search across titles, authors and subjects. Keep "fields" small to avoid huge responses. Returns: Matching book records..
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Search keywords, e.g. a title, author or subject. | |
| limit | No | Maximum number of results to return. Defaults to 10. | |
| fields | No | Comma-separated list of fields to include in each result. A compact default keeps responses small. | title,author_name,first_publish_year,key |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds value by explaining that the search is full-text across specific metadata fields and warns that large 'fields' values can cause huge responses, which is a practical behavioral trait. It also states the return type.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, spanning three sentences without redundancy. It front-loads the main action and includes a useful performance tip and return note. Minor punctuation issue (double period) does not detract from overall clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only search tool with a fully documented schema and clear annotations, the description covers the necessary aspects: operation, search scope, performance guidance, and return format. No output schema exists, but the 'Returns' line sufficiently outlines the result type.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides 100% coverage for all parameters (q, limit, fields), each with clear descriptions. The description's guidance to keep 'fields' small mirrors the schema's own note about compact responses, adding no new semantics beyond what is already structured.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches books by keyword and specifies the search scope (titles, authors, subjects). It is specific and actionable, though it does not explicitly differentiate from the sibling tool search_authors beyond naming 'books'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The usage is implied: this is the tool for keyword search in books. It offers no explicit alternatives or exclusions, and does not mention search_authors as a complementary or alternative tool. The performance tip about 'fields' is useful but not about tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityDmaintenanceEnables searching for books using the OpenLibrary API; provides a search_books tool for AI assistants to find books by title, author, or keywords.Last updated2Apache 2.0
- Alicense-qualityAmaintenanceSearch the Wayback Machine and IA library (40M+ items), fetch archived snapshots, retrieve item metadata and full text via MCP.Last updated481Apache 2.0
- Alicense-qualityFmaintenanceEnables searching and retrieving metadata from Internet Archive (archive.org) items.Last updated5MIT
- Flicense-qualityCmaintenanceEnables searching WorldCat's library catalog for bibliographic records, editions, citations, and exports in various formats via natural language.Last updated