list-chapters
Retrieve Quran chapters in a specified language using the 'list-chapters' tool from the quran-mcp-server. Simplify Quran navigation by accessing chapter details in your preferred language.
Instructions
List Chapters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | Yes | Parameter language (e.g., 'en', 'ar', 'fr-CA') |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"description": "Parameter language (e.g., 'en', 'ar', 'fr-CA')",
"maxLength": 10,
"minLength": 2,
"pattern": "^[a-zA-Z-]+$",
"type": "string"
}
},
"required": [
"language"
],
"type": "object"
}