convert_to_hijri
Pack: prayer-times · Endpoint: https://gateway.pipeworx.io/prayer-times/mcp
Convert a Gregorian date to the Hijri (Islamic) calendar date. Useful for Islamic calendar date conversion.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
date | string | yes | Gregorian date in DD-MM-YYYY format, e.g. “07-06-2026”. |
Example call
Arguments
{
"date": "07-06-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":"convert_to_hijri","arguments":{"date":"07-06-2026"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('convert_to_hijri', {
"date": "07-06-2026"
});
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.