elevenlabs_get_audio_isolation_history
Get Audio Isolation History. Returns a list of all your audio isolation generations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| search | No | ||
| account | No | ||
| page_size | No |
Get Audio Isolation History. Returns a list of all your audio isolation generations.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| search | No | ||
| account | No | ||
| page_size | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint: true, idempotentHint: true, and destructiveHint: false, so the read-only nature is well covered. The description adds minimal context by noting the list includes 'all your audio isolation generations,' but it does not disclose pagination, ordering, or account scoping. No contradiction with annotations.
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?
The second sentence is concise and informative, earning its place. The first sentence, however, is essentially a restatement of the tool name and adds no new information, so not every word earns its place.
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?
This is a simple read-only list tool with good annotations, but it has no output schema and provides no explanation of pagination, search, or account filtering. The return type is minimally described, but an agent cannot confidently invoke it with non-obvious filter parameters based on this description alone.
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%, and the description mentions none of the four parameters (page, search, account, page_size). The description fails to compensate for the lack of schema-level descriptions, leaving agents to guess the meaning and format of each parameter.
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 uses a specific action ('Returns a list') and resource ('audio isolation generations'), making the tool's purpose immediately clear. It is distinguishable from sibling tools like elevenlabs_delete_audio_isolation_history_item and other history-related endpoints.
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 intended use is implied by the tool name and description: retrieve audio isolation generation history. However, there is no explicit guidance about when to use this tool versus alternatives, no exclusions, and no mention of related tools such as the delete history item endpoint.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.