audiobook
Pack: librivox · Endpoint: https://gateway.pipeworx.io/librivox/mcp
Single audiobook by id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes |
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
| Field | Type | Description |
|---|---|---|
id | number | Audiobook ID |
title | string | Audiobook title |
description | string | Audiobook description |
language | string | Language of audiobook |
authors | array | List of authors |
narrators | array | List of narrators |
cover_url | string | Cover image URL |
project_gutenberg_id | number | null | Project Gutenberg ID if available |
url_librivox | string | LibriVox page URL |
url_iarchive | string | Internet Archive URL |
date_added | string | Date added to LibriVox |
totaltime | number | Total 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.