get_conversation
Retrieve conversation details and full transcripts from the ElevenLabs MCP Server for analyzing completed agent interactions.
Instructions
Gets conversation with transcript. Returns: conversation details and full transcript. Use when: analyzing completed agent conversations.
Args:
conversation_id: The unique identifier of the conversation to retrieve, you can get the ids from the list_conversations tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversation_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"conversation_id": {
"title": "Conversation Id",
"type": "string"
}
},
"required": [
"conversation_id"
],
"type": "object"
}