Get call transcription
aircall_get_call_transcriptionGet the AI-generated transcription of a call (Aircall AI Voice feature). Aircall REST: GET /calls/{id}/transcription.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The call id. |
aircall_get_call_transcriptionGet the AI-generated transcription of a call (Aircall AI Voice feature). Aircall REST: GET /calls/{id}/transcription.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The call id. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation already establishes safe read behavior. The description adds that this is the Aircall AI Voice feature, which may imply availability constraints, but it doesn't disclose error handling or when transcription might be unavailable. 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?
Two sentences: the first states the purpose, the second provides the REST endpoint. No redundancy or filler; both sentences contribute value.
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?
Given the simple tool with one parameter and no output schema, the description adequately conveys that the result is the transcription, and the REST endpoint adds specificity. It doesn't explicitly state response format, but for a getter this is sufficient.
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 coverage is 100%, with the only parameter 'id' fully described as 'The call id.' The description mentions the REST path containing {id}, which reinforces the meaning but adds no new semantic information.
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 clearly states the tool retrieves the AI-generated transcription of a call, using a specific REST endpoint. This distinguishes it from sibling tools like get_call_summary or get_call_sentiments, which handle different aspects.
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 description implies the use case: when needing the transcription text from a call. It does not explicitly contrast with sibling tools or state when not to use it, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.