Audiobook
audiobookSingle audiobook by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| books | No |
audiobookSingle audiobook by id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
| Name | Required | Description | Default |
|---|---|---|---|
| books | No |
Changes observed during successful MCP inspections.
Output schema / properties / authorsRemoved value: -{
- "description": "List of authors",
- "items": {
- "properties": {
- "id": {
- "description": "Author ID",
- "type": "number"
- },
- "name": {
- "description": "Author name",
- "type": "string"
- }
- },
- "type": "object"
- },
- "type": "array"
-}Output schema / properties / booksAdded value: +{
+ "items": {
+ "properties": {
+ "authors": {
+ "items": {
+ "properties": {
+ "dob": {
+ "type": "string"
+ },
+ "dod": {
+ "type": "string"
+ },
+ "first_name": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "last_name": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "copyright_year": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "language": {
+ "type": "string"
+ },
+ "num_sections": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "totaltime": {
+ "type": "string"
+ },
+ "totaltimesecs": {
+ "type": "number"
+ },
+ "url_librivox": {
+ "type": "string"
+ },
+ "url_other": {
+ "type": "string"
+ },
+ "url_project": {
+ "type": "string"
+ },
+ "url_rss": {
+ "type": "string"
+ },
+ "url_text_source": {
+ "type": "string"
+ },
+ "url_zip_file": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+}Output schema / properties / cover_urlRemoved value: -{
- "description": "Cover image URL",
- "type": "string"
-}Output schema / properties / date_addedRemoved value: -{
- "description": "Date added to LibriVox",
- "type": "string"
-}Output schema / properties / descriptionRemoved value: -{
- "description": "Audiobook description",
- "type": "string"
-}Output schema / properties / idRemoved value: -{
- "description": "Audiobook ID",
- "type": "number"
-}Output schema / properties / languageRemoved value: -{
- "description": "Language of audiobook",
- "type": "string"
-}Output schema / properties / narratorsRemoved value: -{
- "description": "List of narrators",
- "items": {
- "properties": {
- "id": {
- "description": "Narrator ID",
- "type": "number"
- },
- "name": {
- "description": "Narrator name",
- "type": "string"
- }
- },
- "type": "object"
- },
- "type": "array"
-}Output schema / properties / project_gutenberg_idRemoved value: -{
- "description": "Project Gutenberg ID if available",
- "type": [
- "number",
- "null"
- ]
-}Output schema / properties / titleRemoved value: -{
- "description": "Audiobook title",
- "type": "string"
-}Output schema / properties / totaltimeRemoved value: -{
- "description": "Total duration in seconds",
- "type": "number"
-}Output schema / properties / url_iarchiveRemoved value: -{
- "description": "Internet Archive URL",
- "type": "string"
-}Output schema / properties / url_librivoxRemoved value: -{
- "description": "LibriVox page URL",
- "type": "string"
-}Input schema / examplesAdded value: +[
+ {
+ "id": 1234
+ }
+]Output schema / (root)Previous value: -nullNew value: +{
+ "properties": {
+ "authors": {
+ "description": "List of authors",
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Author ID",
+ "type": "number"
+ },
+ "name": {
+ "description": "Author name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "cover_url": {
+ "description": "Cover image URL",
+ "type": "string"
+ },
+ "date_added": {
+ "description": "Date added to LibriVox",
+ "type": "string"
+ },
+ "description": {
+ "description": "Audiobook description",
+ "type": "string"
+ },
+ "id": {
+ "description": "Audiobook ID",
+ "type": "number"
+ },
+ "language": {
+ "description": "Language of audiobook",
+ "type": "string"
+ },
+ "narrators": {
+ "description": "List of narrators",
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Narrator ID",
+ "type": "number"
+ },
+ "name": {
+ "description": "Narrator name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "project_gutenberg_id": {
+ "description": "Project Gutenberg ID if available",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Audiobook title",
+ "type": "string"
+ },
+ "totaltime": {
+ "description": "Total duration in seconds",
+ "type": "number"
+ },
+ "url_iarchive": {
+ "description": "Internet Archive URL",
+ "type": "string"
+ },
+ "url_librivox": {
+ "description": "LibriVox page URL",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, and non-destructive behavior, so the safety profile is covered. The description adds the cardinality signal 'single' and the id-based selection behavior, but it does not disclose handling of missing/invalid ids or other runtime details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four words, front-loaded, no filler. Every word earns its place by identifying the resource, the cardinality, and the selection key.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter lookup, the description is minimally invokable, and the output schema plus annotations cover safety and return shape. It still lacks explicit guidance on where the id comes from or when to choose this tool over the sibling 'audiobooks', so it is not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description needed to carry parameter meaning. 'By id' merely restates the parameter name and does not explain the id's source, format, or valid values; the one parameter is self-explanatory, but the description adds little semantic value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description is a noun phrase rather than an explicit verb, but it clearly identifies a single audiobook resource selected by id. The word 'single' distinguishes it from the plural sibling 'audiobooks', even though the description does not mention that sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'by id' implies this is a point lookup for one specific audiobook, and the contrast with sibling 'audiobooks' suggests when to use it. However, there is no explicit statement of when to prefer it over alternatives or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.