phone_get_last_result
Retrieve the last processed result of a specific call using the call ID. Ideal for automated conversational phone systems powered by Asterisk S2S MCP Server.
Instructions
Obtener el último resultado procesado de una llamada específica
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| callId | Yes | ID de la llamada |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"callId": {
"description": "ID de la llamada",
"type": "string"
}
},
"required": [
"callId"
],
"type": "object"
}