Connects Claude to the Internet Archive's Open Library API for querying book metadata, author information, and bibliographic data. The source doesn't list specific tools, but this is part of Pipeworx's gateway approach where you can ask questions in plain English using ask_pipeworx instead of calling individual tools directly. It handles tool selection and argument mapping automatically. Useful when you need to look up ISBNs, search for books by title or author, or pull catalog data without manually constructing API calls. Available as a standalone endpoint or through the full Pipeworx gateway that bundles 250+ data sources.
Public tool metadata for what this MCP can expose to an agent.
get_book_by_titleSearch for a book by its title on Open Library.1 paramsSearch for a book by its title on Open Library.
titlestringget_authors_by_nameSearch for author information on Open Library.1 paramsSearch for author information on Open Library.
namestringget_author_infoGet detailed information for a specific author using their Open Library Author Key (e.g. OL23919A).1 paramsGet detailed information for a specific author using their Open Library Author Key (e.g. OL23919A).
author_keystringget_author_photoGet the URL for an author's photo using their Open Library Author ID (OLID e.g. OL23919A).1 paramsGet the URL for an author's photo using their Open Library Author ID (OLID e.g. OL23919A).
olidstringget_book_coverGet the URL for a book's cover image using a key (ISBN, OCLC, LCCN, OLID, ID) and value.3 paramsGet the URL for a book's cover image using a key (ISBN, OCLC, LCCN, OLID, ID) and value.
keystringISBN · OCLC · LCCN · OLID · IDsizestringS · M · Lvaluestringget_book_by_idGet detailed information about a book using its identifier (ISBN, LCCN, OCLC, OLID).2 paramsGet detailed information about a book using its identifier (ISBN, LCCN, OCLC, OLID).
idTypestringisbn · lccn · oclc · olididValuestringOpen Library MCP — Internet Archive's open book metadata
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"open-library": {
"url": "https://gateway.pipeworx.io/open-library/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Open Library data" })
The gateway picks the right tool and fills the arguments automatically.
MIT