get_author

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

Get author biography, major works, and key information using their Open Library ID (e.g., “OL23919A”). Returns birth/death dates, complete bibliography, and biographical summary.

Parameters

NameTypeRequiredDescription
author_keystringyesOpen Library author key (e.g., OL23919A)

Example call

Arguments

{
  "author_key": "OL23919A"
}

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_author","arguments":{"author_key":"OL23919A"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_author', {
  "author_key": "OL23919A"
});

Response shape

Always returns: name, birth_date, death_date, bio, wikipedia_url

FieldTypeDescription
namestringAuthor name
birth_datestring | nullBirth date if available
death_datestring | nullDeath date if available
biostring | nullBiographical summary
wikipedia_urlstring | nullWikipedia URL if available
Full JSON Schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Author name"
    },
    "birth_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Birth date if available"
    },
    "death_date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Death date if available"
    },
    "bio": {
      "type": [
        "string",
        "null"
      ],
      "description": "Biographical summary"
    },
    "wikipedia_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "Wikipedia URL if available"
    }
  },
  "required": [
    "name",
    "birth_date",
    "death_date",
    "bio",
    "wikipedia_url"
  ]
}

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