search_quran

Pack: quran · Endpoint: https://gateway.pipeworx.io/quran/mcp

Search the Quran for a keyword across ayahs (verses). Returns matching verses (up to 30) with their surah (chapter) and ayah number. Defaults to the en.asad English translation; pass another edition to search a different translation or Arabic (quran-uthmani).

Parameters

NameTypeRequiredDescription
keywordstringyesWord or phrase to search for.
editionstringnoEdition to search. Default ‘en.asad’.
surahnumber,stringnoRestrict to a surah number, or ‘all’ for the whole Quran (default).

Example call

Arguments

{
  "keyword": "mercy"
}

curl

curl -X POST https://gateway.pipeworx.io/quran/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_quran","arguments":{"keyword":"mercy"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_quran', {
  "keyword": "mercy"
});

More examples

{
  "keyword": "light",
  "surah": 24,
  "edition": "quran-uthmani"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "quran": {
      "url": "https://gateway.pipeworx.io/quran/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 6, 2026