quran_cloud_mcp_server
MCP server to help LLMs to get access to Quran API (
marwanWaly
README
quran_cloud_mcp_server
MCP server to help LLMs to get access to Quran API (https://alquran.cloud/api) to prevent the hallucination with Quran text.
hallucination is a big problem specially when you are working on sensitive data that each character is important.
one way of reducing the hallucination is by providing the context to your LLM but of course with large chunk of text like the holy Quran it's not efficient if you put all text in each request.
So, in this repo I have created an MCP server that's connect your LLM to a free API https://alquran.cloud/api that enables your model to retrieve only the data he needs.
Also, I will show to you how we can connect this MCP server to Claude desktop application.
Example of Claude the original response

Example of Claude the new response after connecting to Search-Quran MCP server

Installation
make sure you have python 3.13 & pip
Open your terminal and write these commands
Cloning
git clone https://github.com/marwanWaly/quran_cloud_mcp_server.git
Move to project directory
cd quran_cloud_mcp_server
Create virtual environment
python -m venv .venv
Activate venv
On Windows
.\venv\Scripts\activate
On Mac or linux
source .venv/bin/activate
Python packages installation
Use the package manager pip to install requirements.txt.
pip install -r requirements.txt
Create .env file
OPENAI_API_KEY=Your-secret-key
Run in terminal
python client.py
now you can directly chat with GPT4o in your terminal
Connect the server to Claude Desktop
Download Claude desktop and open it
Step 1
Select setting from the file menu

Step 2
Click on Developer then Edit Config

Step 3
Open claude_desktop_config.json

Step 4
Write this configuration in the file
{
"mcpServers": {
"Search-Quran": {
"command": "python",
"args": [
"PROJECT_PATH_ON_YOUR_PC\\server.py"
],
"host": "127.0.0.1",
"port": 8080,
"timeout": 30000
}
}
}
Don't forget to replace PROJECT_PATH_ON_YOUR_PC with the absolute path to your project server

Step 5
Restart Claude app (make sure it's completely closed from your taskbar by right click on Claude icon and select Quit)
Check if the new MCP has been added

Click on tools icon

Recommended Servers
mixpanel
Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.
Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.
MCP PubMed Search
Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.
dbt Semantic Layer MCP Server
A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.
Crypto Price & Market Analysis MCP Server
A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.
Nefino MCP Server
Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.
Vectorize
Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.
MATLAB MCP Server
Integrates MATLAB with AI to execute code, generate scripts from natural language, and access MATLAB documentation seamlessly.
Macrostrat MCP Server
Enables Claude to query comprehensive geologic data from the Macrostrat API, including geologic units, columns, minerals, and timescales through natural language.
MCP Word Counter
A Model Context Protocol server that provides tools for analyzing text documents, including counting words and characters. This server helps LLMs perform text analysis tasks by exposing simple document statistics functionality.