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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Title keyword filter. |
author | string | no | |
title | string | no | |
since | string | no | YYYY-MM-DD |
limit | number | no | |
offset | number | no |
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
| Field | Type | Description |
|---|---|---|
books | array | List 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.