audiobook

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

Single audiobook by id.

Parameters

NameTypeRequiredDescription
idnumberyes

Example call

Arguments

{
  "id": 1234
}

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":"audiobook","arguments":{"id":1234}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('audiobook', {
  "id": 1234
});

Response shape

FieldTypeDescription
idnumberAudiobook ID
titlestringAudiobook title
descriptionstringAudiobook description
languagestringLanguage of audiobook
authorsarrayList of authors
narratorsarrayList of narrators
cover_urlstringCover image URL
project_gutenberg_idnumber | nullProject Gutenberg ID if available
url_librivoxstringLibriVox page URL
url_iarchivestringInternet Archive URL
date_addedstringDate added to LibriVox
totaltimenumberTotal duration in seconds
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Audiobook ID"
    },
    "title": {
      "type": "string",
      "description": "Audiobook title"
    },
    "description": {
      "type": "string",
      "description": "Audiobook description"
    },
    "language": {
      "type": "string",
      "description": "Language of audiobook"
    },
    "authors": {
      "type": "array",
      "description": "List of authors",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Author ID"
          },
          "name": {
            "type": "string",
            "description": "Author name"
          }
        }
      }
    },
    "narrators": {
      "type": "array",
      "description": "List of narrators",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Narrator ID"
          },
          "name": {
            "type": "string",
            "description": "Narrator name"
          }
        }
      }
    },
    "cover_url": {
      "type": "string",
      "description": "Cover image URL"
    },
    "project_gutenberg_id": {
      "type": [
        "number",
        "null"
      ],
      "description": "Project Gutenberg ID if available"
    },
    "url_librivox": {
      "type": "string",
      "description": "LibriVox page URL"
    },
    "url_iarchive": {
      "type": "string",
      "description": "Internet Archive URL"
    },
    "date_added": {
      "type": "string",
      "description": "Date added to LibriVox"
    },
    "totaltime": {
      "type": "number",
      "description": "Total duration in seconds"
    }
  }
}

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