Skip to main content
Glama

list_translations

Discover available Quran translations to access the holy text in multiple languages for study and understanding.

Instructions

List all available Quran translations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function for the list_translations tool. It maps the TRANSLATIONS constant (imported from constants) to return an array of available translation objects with slug, name, and language.
    export function listTranslations() { return TRANSLATIONS.map(t => ({ slug: t.slug, name: t.name, language: t.language, })); }
  • Registers the list_translations tool in the shared tools array, providing its name, description, and empty input schema (no parameters required). This definition is used by MCP transports.
    { name: 'list_translations', description: 'List all available Quran translations.', inputSchema: { type: 'object', properties: {}, }, },
  • The switch case in the tool executor that handles execution of list_translations by calling the imported listTranslations function.
    case 'list_translations': { result = listTranslations(); break;
  • Import statement that brings the listTranslations handler into the tool executor module.
    listTranslations

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Prince77-7/quranMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server