mcp-audible

mcp-audible

Enables searching, managing library, wishlist, and credits on Audible through browser automation.

Category
Visit Server

README

@striderlabs/mcp-audible

MCP (Model Context Protocol) server for Audible audiobook service. Automates Audible.com via Playwright + Browserbase to search audiobooks, manage your library, wishlist, and credits.

Requirements

  • Browserbase account with a running session
  • Node.js 18+

Setup

npm install
npm run build

Configuration

Set the following environment variable:

Variable Required Description
BROWSERBASE_CDP_URL Yes CDP WebSocket URL from Browserbase session

The Browserbase session must already be authenticated with Audible (logged in). Navigate to audible.com and sign in before using library/wishlist/credits tools.

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "audible": {
      "command": "node",
      "args": ["/path/to/dist/index.js"],
      "env": {
        "BROWSERBASE_CDP_URL": "wss://connect.browserbase.com?apiKey=YOUR_KEY&sessionId=YOUR_SESSION"
      }
    }
  }
}

Or if installed via npm:

{
  "mcpServers": {
    "audible": {
      "command": "npx",
      "args": ["@striderlabs/mcp-audible"],
      "env": {
        "BROWSERBASE_CDP_URL": "wss://connect.browserbase.com?apiKey=YOUR_KEY&sessionId=YOUR_SESSION"
      }
    }
  }
}

Tools

search_audiobooks

Search Audible by title, author, or narrator.

Parameters:

  • query (string, required): Search query
  • search_by (string, optional): "title" | "author" | "narrator"

Returns: Array of up to 20 audiobooks with title, author, narrator, runtime, rating, price, ASIN, and summary.


get_audiobook_details

Get full details for a specific audiobook.

Parameters:

  • asin (string, required): Audible ASIN identifier

Returns: Detailed audiobook info including runtime, release date, publisher, language, rating, review count, price, categories, and sample URL.


get_library

List audiobooks in your Audible library.

Parameters:

  • page (number, optional): Page number for pagination (default: 1)

Returns: Array of library items with title, author, narrator, runtime, date added, and listening progress.

Requires authenticated session.


get_wishlist

List audiobooks in your Audible wishlist.

Parameters: None

Returns: Array of wishlist items with title, author, narrator, runtime, price, and date added.

Requires authenticated session.


add_to_wishlist

Add an audiobook to your Audible wishlist.

Parameters:

  • asin (string, required): Audible ASIN of the audiobook

Returns: { success: boolean, message: string }

Requires authenticated session.


get_credits

Check available Audible credits and membership details.

Parameters: None

Returns: Available credit count, membership type, next credit date, and rollover policy.

Requires authenticated session.

How It Works

This server uses Playwright to connect to a remote browser session via Browserbase's CDP (Chrome DevTools Protocol) endpoint. It navigates Audible pages and extracts data via DOM scraping.

Since Audible does not have a public API, this approach uses browser automation. The Browserbase session maintains cookies and authentication state between calls.

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured