get_author

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_author for the schema, then POST the same URL with its arguments for the data.

Fetch an author’s profile from Open Library by their author key (e.g., ‘OL23919A’). Returns name, birth_date, death_date, biographical summary, and Wikipedia URL.

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 September 23, 2026