hijri_calendar
Pack: prayer-times · Endpoint: https://gateway.pipeworx.io/prayer-times/mcp
Monthly Islamic prayer-times calendar for a city: per-day Gregorian and Hijri (Islamic calendar) dates with salah times (Fajr, Dhuhr, Maghrib, Isha).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
city | string | yes | City name, e.g. “London”. |
country | string | yes | Country name or code, e.g. “UK”. |
month | number | yes | Gregorian month, 1-12. |
year | number | yes | Gregorian year, e.g. 2026. |
method | number | no | Prayer-time calculation method. Default 2 = ISNA; 3 = MWL; 4 = Umm al-Qura; and others. |
Example call
Arguments
{
"city": "Cairo",
"country": "Egypt",
"month": 6,
"year": 2026
}
curl
curl -X POST https://gateway.pipeworx.io/prayer-times/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hijri_calendar","arguments":{"city":"Cairo","country":"Egypt","month":6,"year":2026}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hijri_calendar', {
"city": "Cairo",
"country": "Egypt",
"month": 6,
"year": 2026
});
More examples
{
"city": "Dubai",
"country": "UAE",
"month": 12,
"year": 2026,
"method": 4
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"prayer-times": {
"url": "https://gateway.pipeworx.io/prayer-times/mcp"
}
}
}
See Getting Started for client-specific install steps.