Skip to main content
Glama

Get Audiobook Detail

get_audiobook
Read-onlyIdempotent

Full audiobook detail by author + work slug — title, description, cover, runtime, ISBN, genres, narrator, publisher, and the full table of active offers across retail partners.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
work_slugYesWork slug (lowercase, hyphenated). Example: "to". Combined with author_slug forms the canonical work URL.
author_slugYesAuthor slug (lowercase, hyphenated). Example: "stephen-king". Discoverable via search_audiobooks results.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed8 schema fields changed
    • addedInput schema / properties / author_slug / description
      Added value: +"Author slug (lowercase, hyphenated). Example: \"stephen-king\". Discoverable via search_audiobooks results."
    • removedInput schema / properties / work_slug / $ref
      Removed value: -"#/properties/author_slug"
    • addedInput schema / properties / work_slug / description
      Added value: +"Work slug (lowercase, hyphenated). Example: \"to\". Combined with author_slug forms the canonical work URL."
    • addedInput schema / properties / work_slug / maxLength
      Added value: +120
    • addedInput schema / properties / work_slug / minLength
      Added value: +1
    • addedInput schema / properties / work_slug / pattern
      Added value: +"^[a-z0-9]+(-[a-z0-9]+)*$"
    • addedInput schema / properties / work_slug / type
      Added value: +"string"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "value": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": false,
      +          "properties": {
      +            "author": {
      +              "additionalProperties": false,
      +              "properties": {
      +                "bio": {
      +                  "type": [
      +                    "string",
      +                    "null"
      +                  ]
      +                },
      +                "name": {
      +                  "type": "string"
      +                },
      +                "photo_url": {
      +                  "anyOf": [
      +                    {
      +                      "format": "uri",
      +                      "type": "string"
      +                    },
      +                    {
      +                      "type": "null"
      +                    }
      +                  ]
      +                },
      +                "slug": {
      +                  "$ref": "#/properties/value/anyOf/0/properties/slug"
      +                }
      +              },
      +              "required": [
      +                "slug",
      +                "name",
      +                "bio",
      +                "photo_url"
      +              ],
      +              "type": "object"
      +            },
      +            "cover_url": {
      +              "anyOf": [
      +                {
      +                  "format": "uri",
      +                  "type": "string"
      +                },
      +                {
      +                  "type": "null"
      +                }
      +              ]
      +            },
      +            "description": {
      +              "type": [
      +                "string",
      +                "null"
      +              ]
      +            },
      +            "language": {
      +              "type": "string"
      +            },
      +            "offers": {
      +              "items": {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "format": {
      +                    "type": "string"
      +                  },
      +                  "last_seen": {
      +                    "type": "string"
      +                  },
      +                  "original_price_czk": {
      +                    "type": [
      +                      "number",
      +                      "null"
      +                    ]
      +                  },
      +                  "partner": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "name": {
      +                        "type": "string"
      +                      },
      +                      "slug": {
      +                        "$ref": "#/properties/value/anyOf/0/properties/slug"
      +                      }
      +                    },
      +                    "required": [
      +                      "slug",
      +                      "name"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "price_czk": {
      +                    "type": [
      +                      "number",
      +                      "null"
      +                    ]
      +                  },
      +                  "url": {
      +                    "format": "uri",
      +                    "type": "string"
      +                  }
      +                },
      +                "required": [
      +                  "partner",
      +                  "price_czk",
      +                  "original_price_czk",
      +                  "format",
      +                  "url",
      +                  "last_seen"
      +                ],
      +                "type": "object"
      +              },
      +              "type": "array"
      +            },
      +            "rating_avg": {
      +              "type": [
      +                "number",
      +                "null"
      +              ]
      +            },
      +            "rating_count": {
      +              "type": [
      +                "number",
      +                "null"
      +              ]
      +            },
      +            "slug": {
      +              "maxLength": 120,
      +              "minLength": 1,
      +              "pattern": "^[a-z0-9]+(-[a-z0-9]+)*$",
      +              "type": "string"
      +            },
      +            "title": {
      +              "type": "string"
      +            },
      +            "url": {
      +              "format": "uri",
      +              "pattern": "^https\\:\\/\\/audioknihy\\.cz\\/",
      +              "type": "string"
      +            },
      +            "year": {
      +              "type": [
      +                "number",
      +                "null"
      +              ]
      +            }
      +          },
      +          "required": [
      +            "slug",
      +            "title",
      +            "description",
      +            "cover_url",
      +            "year",
      +            "rating_avg",
      +            "rating_count",
      +            "language",
      +            "author",
      +            "offers",
      +            "url"
      +          ],
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    }
      +  },
      +  "required": [
      +    "value"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so description adds value by specifying the returned fields and mentioning 'active offers across retail partners', which provides behavioral context beyond what annotations convey. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that is front-loaded with the purpose and efficiently lists the returned fields without redundancy. Every word adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 2 required parameters, high schema coverage, and an existing output schema, the description completely covers what the tool returns. It lists all key fields and mentions offers, which is sufficient for an agent to understand the output.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with both work_slug and author_slug already having detailed descriptions and examples. The description's mention of 'by author + work slug' adds no new meaning, so a baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('get') and resource ('audiobook detail'), and clearly lists the returned fields (title, description, cover, runtime, ISBN, genres, narrator, publisher, offers). It distinguishes from sibling tools like search_audiobooks and compare_all_offers by focusing on retrieving full detail for a specific audiobook via slugs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when you have the author and work slugs, but does not explicitly state when to use this tool over alternatives like search_audiobooks or when not to use it. No exclusions or comparisons to siblings are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources