tracks
Pack: librivox · Endpoint: https://gateway.pipeworx.io/librivox/mcp
List tracks for an audiobook.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
project_id | number | yes |
Example call
Arguments
{
"project_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":"tracks","arguments":{"project_id":1234}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tracks', {
"project_id": 1234
});
Response shape
| Field | Type | Description |
|---|---|---|
tracks | array | List of audio tracks for the audiobook |
Full JSON Schema
{
"type": "object",
"properties": {
"tracks": {
"type": "array",
"description": "List of audio tracks for the audiobook",
"items": {
"type": "object",
"properties": {
"track_number": {
"type": "number",
"description": "Track number"
},
"title": {
"type": "string",
"description": "Track title"
},
"length": {
"type": "number",
"description": "Track length in seconds"
},
"url_project": {
"type": "string",
"description": "Project URL"
},
"url_mp3": {
"type": "string",
"description": "MP3 download URL"
},
"url_ogg": {
"type": "string",
"description": "OGG download URL"
},
"url_m4b": {
"type": "string",
"description": "M4B download URL"
},
"narrator": {
"type": "string",
"description": "Narrator name"
},
"date_recorded": {
"type": "string",
"description": "Recording date"
}
}
}
}
}
}
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.