mcp-audible
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| BROWSERBASE_CDP_URL | Yes | CDP WebSocket URL from Browserbase session |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_audiobooksA | Search for audiobooks on Audible by title, author, or narrator |
| get_audiobook_detailsA | Get detailed information about a specific audiobook including runtime, reviews, and sample |
| get_libraryA | List audiobooks in the user's Audible library |
| get_wishlistA | List audiobooks in the user's Audible wishlist |
| add_to_wishlistB | Add an audiobook to the user's Audible wishlist |
| get_creditsA | Check available Audible credits and membership information |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct resource and action: searching, fetching details, viewing library/wishlist, adding to wishlist, and checking credits. There is no meaningful overlap between tools, and an agent can easily choose the correct one.
All tool names follow a consistent snake_case verb_noun pattern, with get_, search_, and add_ as clear action prefixes. This makes the API predictable and easy to navigate.
Six tools is a well-scoped size for an Audible assistant covering discovery, details, library, wishlist, and credits. Each tool represents a meaningful capability without unnecessary bloat.
The core read and add flows are covered, but there is an obvious missing operation: remove_from_wishlist since add_to_wishlist exists. The surface also lacks any library management or playback-related actions, though those may be outside the intended scope.