audiobooks

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

Search LibriVox free public-domain audiobooks by title keyword, author name, or date added (YYYY-MM-DD); supports pagination via limit/offset. Returns book metadata including reader, language, URL, and chapter count.

Parameters

NameTypeRequiredDescription
querystringnoTitle keyword filter.
authorstringno
titlestringno
sincestringnoYYYY-MM-DD
limitnumberno
offsetnumberno

Example call

Arguments

{
  "query": "Pride and Prejudice"
}

curl

curl -X POST https://gateway.pipeworx.io/librivox/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"audiobooks","arguments":{"query":"Pride and Prejudice"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('audiobooks', {
  "query": "Pride and Prejudice"
});

More examples

{
  "author": "Jane Austen",
  "limit": 10,
  "offset": 0
}

Response shape

FieldTypeDescription
booksarrayList of audiobooks matching search criteria
Full JSON Schema
{
  "type": "object",
  "properties": {
    "books": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Audiobook ID"
          },
          "title": {
            "type": "string",
            "description": "Audiobook title"
          },
          "description": {
            "type": "string",
            "description": "Audiobook description"
          },
          "url_text_source": {
            "type": "string"
          },
          "language": {
            "type": "string",
            "description": "Language of audiobook"
          },
          "copyright_year": {
            "type": "string"
          },
          "num_sections": {
            "type": "string"
          },
          "url_rss": {
            "type": "string"
          },
          "url_zip_file": {
            "type": "string"
          },
          "url_project": {
            "type": "string"
          },
          "url_librivox": {
            "type": "string",
            "description": "LibriVox page URL"
          },
          "url_other": {
            "type": "string"
          },
          "totaltime": {
            "type": "string",
            "description": "Total duration in seconds"
          },
          "totaltimesecs": {
            "type": "number"
          },
          "authors": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "Author ID"
                },
                "first_name": {
                  "type": "string"
                },
                "last_name": {
                  "type": "string"
                },
                "dob": {
                  "type": "string"
                },
                "dod": {
                  "type": "string"
                }
              }
            },
            "description": "List of authors"
          }
        }
      },
      "description": "List of audiobooks matching search criteria"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026