Skip to main content
Glama

Muslim Prayer Reminder MCP

Get Full Daily Prayer Timetable

get_today_prayer_times
Read-onlyIdempotent

Retrieves today prayer timetable (Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha) in UTC and formatted local time. MANDATORY: The LLM must always explicitly disclose to the user which calculation authority method was used and why it was selected (see authorityNotice in response).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoDate in YYYY-MM-DD format (defaults to today)
madhabNoOptional Asr shadow jurisprudence override (Shafi or Hanafi)
userIdNoUnique user or device ID
latitudeNoOptional explicit latitude override
timezoneNoOptional IANA timezone override
longitudeNoOptional explicit longitude override
calculationMethodNoOptional calculation authority override (auto-resolved from location by default)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
madhabYesActive Asr jurisprudence
timesUtcYes
timezoneYesResolved IANA timezone
localDateYesLocal schedule date YYYY-MM-DD
timesLocalYes
coordinatesYes
authorityNoticeNo
selectionReasonNo
calculationMethodYesActive calculation authority
minuteAdjustmentsNo
authorityDescriptionNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • removedInput schema / additionalProperties
      Removed value: -false
  2. First observed

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and non-destructive, covering the safety profile. The description adds meaningful behavioral context beyond annotations: the response includes both UTC and formatted local time, and there is a strict user-facing disclosure obligation about the calculation authority method via authorityNotice.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with zero wasted words the retrieval action and scope are front-loaded, followed by the high-priority disclosure directive. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return value documentation is not the description's job. The description covers the prayer times returned, the dual time formats, and the mandatory disclosure, while all seven optional parameters are fully captured in the schema. It could have explicitly mentioned the auto-resolution default, but that is already present in the calculationMethod parameter description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with each parameter already documented and enums provided for madhab and calculationMethod, so the baseline of 3 applies. The description does not add semantic detail about parameters; the authorityNotice reference is about the response behavior rather than input meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Retrieves') and a clear resource ('today prayer timetable') and enumerates the exact set of returned times (Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha). The full-day scope distinguishes it from the sibling get_next_prayer without needing to open either schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides no guidance on when to use this tool versus siblings such as get_next_prayer, get_prayer_status, or configure_prayer_preferences. The MANDATORY disclosure requirement is an invocation condition, not a selection guideline, so there is no when-to-use or when-not-to-use information.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation4/5

Most tools have clearly distinct purposes: configuration, preference retrieval, next prayer timing, current-due status, and the full daily timetable. There is slight potential confusion between get_prayer_status and get_next_prayer because both deal with current/upcoming prayer timing, but their descriptions sufficiently separate 'currently due' from 'immediate next.'

Naming Consistency5/5

All tool names follow a consistent get_/configure_ + noun-phrase pattern in snake_case. The naming is predictable and an agent can infer likely behavior from the verb and object.

Tool Count5/5

Five tools is well-scoped for a prayer reminder server. Each tool covers a distinct need without redundancy or bloat.

Completeness4/5

The set covers configuration, preference retrieval, daily schedule, next prayer, and current due status—core reminder workflows are represented. Minor gaps exist such as no ability to retrieve prayer times for arbitrary dates or list calculation authorities, but these are not blocking for the apparent purpose.