Appearance
lookup_reciters
Look up available reciter IDs and names as plain data (no UI widget).
Widget counterpart: list_reciters — use that when the user wants to browse reciters visually.
Use This When
- Preparatory step before calling
play_ayahs— resolve a reciter ID from a name. - Answering factual questions about available reciters without needing an interactive display.
Input
No input fields. Send an empty arguments object: {}.
Example User Prompts
- "Play Surah Al-Fatiha by Mishari Rashid" (agent calls
lookup_recitersto find the ID, thenplay_ayahs) - "Which reciters are available?" (when text-only answer suffices)
Example Request
json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "lookup_reciters",
"arguments": {}
}
}Typical Chaining
lookup_reciters → find reciter_id → play_ayahs