We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/djalal/quran-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Export all schemas for the Quran.com API MCP Server
*/
import chaptersSchemas from './chapters';
import versesSchemas from './verses';
import audioSchemas from './audio';
import translationsSchemas from './translations';
import tafsirsSchemas from './tafsirs';
import juzsSchemas from './juzs';
import languagesSchemas from './languages';
import quranTextSchemas from './quran-text';
import searchSchemas from './search';
// Export all schemas
export {
chaptersSchemas,
versesSchemas,
audioSchemas,
translationsSchemas,
tafsirsSchemas,
juzsSchemas,
languagesSchemas,
quranTextSchemas,
searchSchemas,
};
// Export individual schemas for direct imports
export * from './chapters';
export * from './verses';
export * from './audio';
export * from './translations';
export * from './tafsirs';
export * from './juzs';
export * from './languages';
export * from './quran-text';
export * from './search';