get_tafsir
Retrieve scholarly commentary and interpretation for specific Quran verses to understand their meaning and context.
Instructions
Get Tafsir (commentary/explanation) for a specific Quran verse. Provides scholarly interpretation and context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| surah | Yes | Surah number (1-114) | |
| ayah | Yes | Ayah (verse) number | |
| tafsir | No | Tafsir source (default: en-tafisr-ibn-kathir). Use list_tafsir_sources to see all options. | en-tafisr-ibn-kathir |
Input Schema (JSON Schema)
{
"properties": {
"ayah": {
"description": "Ayah (verse) number",
"minimum": 1,
"type": "number"
},
"surah": {
"description": "Surah number (1-114)",
"maximum": 114,
"minimum": 1,
"type": "number"
},
"tafsir": {
"default": "en-tafisr-ibn-kathir",
"description": "Tafsir source (default: en-tafisr-ibn-kathir). Use list_tafsir_sources to see all options.",
"type": "string"
}
},
"required": [
"surah",
"ayah"
],
"type": "object"
}