get_book

Pack: books · Endpoint: https://gateway.pipeworx.io/books/mcp

Get full details for a book by ISBN. Returns title, author, publication date, description, ratings, and availability status.

Parameters

NameTypeRequiredDescription
isbnstringyesISBN-10 or ISBN-13

Example call

Arguments

{
  "isbn": "9780451524935"
}

curl

curl -X POST https://gateway.pipeworx.io/books/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_book","arguments":{"isbn":"9780451524935"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_book', {
  "isbn": "9780451524935"
});

Response shape

Always returns: title, publish_date, number_of_pages, subjects, description, cover_url, author_keys

FieldTypeDescription
titlestringBook title
publish_datestring | nullPublication date
number_of_pagesnumber | nullNumber of pages
subjectsarrayUp to 10 subject tags
descriptionstring | nullBook description or summary
cover_urlstring | nullCover image URL
author_keysarrayOpen Library author keys
Full JSON Schema
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "Book title"
    },
    "publish_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Publication date"
    },
    "number_of_pages": {
      "type": [
        "number",
        "null"
      ],
      "description": "Number of pages"
    },
    "subjects": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Up to 10 subject tags"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Book description or summary"
    },
    "cover_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "Cover image URL"
    },
    "author_keys": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Open Library author keys"
    }
  },
  "required": [
    "title",
    "publish_date",
    "number_of_pages",
    "subjects",
    "description",
    "cover_url",
    "author_keys"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "books": {
      "url": "https://gateway.pipeworx.io/books/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026