Wraps the Open Library API so you can query book metadata by ISBN without dealing with authentication or rate limits. Exposes a single get_book tool that returns titles, authors, publication dates, descriptions, ratings, and availability status. Useful when you need quick lookups for ISBN data in your agent workflows without standing up your own Open Library integration. Hosted by Pipeworx as a streamable HTTP endpoint, so no local server required. The gateway also supports plain English queries if you'd rather ask "find me details about this ISBN" than construct the tool call yourself.
Books MCP — wraps Open Library API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
get_book | Get full details for a book by ISBN. Returns title, author, publication date, description, ratings, and availability status. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"books": {
"url": "https://gateway.pipeworx.io/books/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 Books data" })
The gateway picks the right tool and fills the arguments automatically.
MIT