Skip to main content
Glama

prayer-times

Server Details

Islamic prayer times for any city, today or the whole month, from official timetables or calculated.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.4/5.0

Scored across 2 tools

Disambiguation5/5

get_prayer_times retrieves prayer times for a location, while search_city resolves city names to identifiers. They have distinct, complementary purposes with no overlap.

Naming Consistency5/5

Both tool names follow the verb_noun pattern in snake_case (get_prayer_times, search_city), making the naming predictable and consistent.

Tool Count5/5

Two tools perfectly match the narrow scope: one for discovery and one for retrieval. There are no redundant or unnecessary tools.

Completeness4/5

The surface covers the core workflow: search for a city and get times by city or place_id, including monthly data. A minor gap is the inability to pass raw coordinates directly, but it is not critical for the stated purpose.

Available Tools

2 tools
get_prayer_timesPrayer times for a cityA
Read-only
Inspect

Prayer times (Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha) for a city on a date. Give either city (name or site slug such as "london", "new-york", "london-ca" for London, Ontario) or place_id (GeoNames id from search_city). date is YYYY-MM-DD in the city's local calendar (default: today there). Set month true for every day of that month. Returns local times, the UTC offset, the Hijri date, the calculation method or official timetable, and the page URL to cite.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCity name or slug, e.g. "Karachi", "kuala lumpur", "london-ca"
dateNoYYYY-MM-DD; default today in that city
monthNotrue: every day of the month of `date`
place_idNoGeoNames id from search_city (exact place)

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so safety is covered. The description adds valuable context beyond that: default date is today in the city's local calendar, month=true expands to the whole month, and it lists what is returned (local times, UTC offset, Hijri date, calculation method, page URL).

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

Conciseness4/5

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

Three sentences, front-loaded with the resource and its fields, then location options, then date semantics and return values. Efficient, though the return-value enumeration is somewhat dense.

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?

Covers the location alternatives, date defaulting, month expansion, and return contents. With no output schema, describing the returned fields is appropriate. Missing only pagination/error behavior, which is minor for a single-record lookup.

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

Parameters4/5

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

Schema coverage is 100%, so the schema already defines parameters. The description adds meaning beyond the schema by clarifying slugs like "london-ca" for London, Ontario, noting city/place_id are alternatives, specifying local-calendar semantics for date, and explaining month's effect.

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+resource (prayer times for a city on a date) and enumerates the exact fields returned (Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha). The relationship to its sibling search_city is made explicit through the place_id reference.

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

Usage Guidelines4/5

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

Explains the two mutually exclusive ways to identify a location (city slug or place_id) and points to search_city as the source of place_id. Lacks an explicit 'when to use this vs alternatives' exclusion, but for a single-purpose lookup tool the context is clear.

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

search_cityFind a cityA
Read-only
Inspect

Search cities and towns by name (any spelling, e.g. "Makkah" or "Mecca"). Returns candidates with their country, region, coordinates, time zone and GeoNames id; pass the id as place_id to get_prayer_times. Optional two-letter country code to narrow the search.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results, default 8
queryYesCity name, at least two characters
countryNoISO 3166-1 alpha-2 country code, e.g. PK

TDQS

A4.2/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered; the description adds the substantive behavioral detail that spelling variants are accepted ("Makkah"/"Mecca") and enumerates what each candidate carries (country, region, coordinates, time zone, GeoNames id). No rate limits or result-count behavior beyond the schema's limit are described, which keeps this short of a 5.

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

Conciseness4/5

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

Two tight sentences with the core purpose front-loaded and no filler. The final sentence fragment about the country code reads slightly tacked-on, but nothing is wasted.

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

Completeness5/5

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

With no output schema, the description carries the return-shape burden and does so (candidate fields plus the downstream place_id usage), while annotations cover the read-only/open-world profile. Nothing an agent needs to call or chain this tool is missing.

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%, so query, limit, and country are already fully documented in the schema; the description only restates country's two-letter form and gives a spelling example. Baseline 3 is appropriate when the schema does the heavy lifting.

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 and resource ("Search cities and towns by name") and immediately distinguishes itself from the only sibling by explaining that the returned id is the place_id input for get_prayer_times. An agent can tell exactly what this tool is for and where its output feeds without opening any schema.

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

Usage Guidelines4/5

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

Gives a concrete when-to-use path (search here, then pass the id to get_prayer_times) and names the narrowing condition (optional two-letter country code). It lacks an explicit when-not-to-use or a disambiguation note about repeated calls, but the routing guidance is clear.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updates
    • First observedget_prayer_times
    • First observedsearch_city

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    A service for calculating Islamic prayer times, Qiblah direction, and moon visibility using the islamic_times library.
    3
    -
  • A
    license
    A
    quality
    A
    maintenance
    MCP server providing Malaysian/global prayer times (JAKIM + Aladhan fallback), nearest mosque/surau finder, and Islamic calendar events.
    4
    1
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    An MCP server providing comprehensive Islamic utilities, including prayer times, azan, Hijri calendar, du'a, zakat, and the 99 Names of Allah.
    34
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources