verses-by_page_number
Retrieve Quranic verses by Madani Mushaf page number with optional translations, tafsirs, audio, and word details using the Quran MCP Server API.
Instructions
Get all verses of a specific Madani Mushaf page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| audio | No | Id of recitation | |
| fields | No | Comma separated list of ayah fields | |
| language | No | Language to fetch word translation | |
| page | No | For paginating within the result | |
| page_number | Yes | Madani Mushaf page number (1-604) | |
| per_page | No | Records per api call | |
| tafsirs | No | Comma separated ids of tafsirs | |
| translation_fields | No | Comma separated list of translation fields | |
| translations | No | Comma separated ids of translations | |
| word_fields | No | Comma separated list of word fields | |
| words | No | Include words of each ayah |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"audio": {
"description": "Id of recitation",
"type": "string"
},
"fields": {
"description": "Comma separated list of ayah fields",
"type": "string"
},
"language": {
"description": "Language to fetch word translation",
"type": "string"
},
"page": {
"description": "For paginating within the result",
"type": "string"
},
"page_number": {
"description": "Madani Mushaf page number (1-604)",
"type": "string"
},
"per_page": {
"description": "Records per api call",
"type": "string"
},
"tafsirs": {
"description": "Comma separated ids of tafsirs",
"type": "string"
},
"translation_fields": {
"description": "Comma separated list of translation fields",
"type": "string"
},
"translations": {
"description": "Comma separated ids of translations",
"type": "string"
},
"word_fields": {
"description": "Comma separated list of word fields",
"type": "string"
},
"words": {
"description": "Include words of each ayah",
"type": "string"
}
},
"required": [
"page_number"
],
"type": "object"
}