tracks

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

LibriVox free public-domain audiobooks — the individual chapter tracks of one LibriVox recording project, given its project_id. Each track returns its section number, title, playtime, the volunteer reader who recorded it, file size and the direct MP3 URL. Answers which chapters are in a LibriVox audiobook and where to stream or download each one.

Parameters

NameTypeRequiredDescription
project_idnumberyes

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

FieldTypeDescription
tracksarrayList 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.

Regenerated from source · build August 21, 2026