Wasilah
Server Details
Prayer times, Qibla, Hijri calendar, 99 Names, Quran audio, Bangladesh offsets. English + Bengali.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mumullickm/wasilah-mcp
- GitHub Stars
- 0
- Server Listing
- Wasilah MCP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 8 of 8 tools scored. Lowest: 3.6/5.
Each tool targets a distinct aspect of Islamic practice: names of Allah, Hijri calendar, prayer times, Qibla, Quran audio, and district-specific offsets. There is no overlap; even get_next_prayer and get_prayer_times are complementary rather than ambiguous.
All tool names follow the consistent pattern get_<resource> (e.g., get_hijri_calendar, get_prayer_times) or get_<resource>_<qualifier> (e.g., get_ifb_district_offset). The naming is uniform and predictable.
With 8 tools, the server covers essential Islamic utilities without being too sparse or cluttered. Each tool serves a clear purpose and contributes to the overall functionality.
The tool surface covers common Islamic resources: Names of Allah, Hijri dates, prayer times, Qibla direction, Quran audio, and a specific local offset. Minor gaps such as a general Islamic events calendar or duas might exist, but the core workflows are well-covered.
Available Tools
9 toolsget_asma_ul_husnaARead-onlyInspect
Look up the 99 Names of Allah (Asma ul Husna). Returns Arabic, transliteration, English and Bengali. Give a number for one name, a search term to match by meaning or transliteration, or neither to get all 99.
| Name | Required | Description | Default |
|---|---|---|---|
| number | No | Name number, 1 to 99. | |
| search | No | Match against transliteration, English meaning, Bengali or Arabic. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the behavioral trait of being a read-only lookup ('Look up'), consistent with the readOnlyHint annotation. It also specifies what data is returned (Arabic, transliteration, English, Bengali), adding value beyond the annotation. No contradictions or missing behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the purpose, and every clause provides necessary information. No wasted words. Structure is optimal for quick reading.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with no output schema, the description completely covers all input modes and output content. No missing information given the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for both parameters. The description adds significant meaning by explaining the interplay: 'Give a number for one name, a search term... or neither to get all 99.' This clarifies the optionality and intended usage beyond what the schema alone provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose ('Look up the 99 Names of Allah'), specifies the output (Arabic, transliteration, English, Bengali), and distinguishes three usage modes (by number, search, or all). This is a precise verb+resource definition that differentiates from sibling tools like get_prayer_times or get_quran_audio.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit guidance on when to use each parameter: 'Give a number for one name, a search term to match by meaning or transliteration, or neither to get all 99.' This covers all usage scenarios and implicitly tells the agent when not to use alternatives. No exclusions are needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_hijri_calendarARead-onlyInspect
Get a full Hijri month mapped to Gregorian dates, with the significant days that fall in it. Give a Hijri year and month, or a Gregorian date to get the month containing it. Dates are calendar positions, not sighting announcements.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Gregorian date YYYY-MM-DD; returns the Hijri month containing it. Defaults to today. | |
| year | No | Hijri year, e.g. 1448. | |
| month | No | Hijri month number, 1 = Muharram. | |
| method | No | umm_al_qura (default, the Saudi civil calendar) or tabular (Kuwaiti arithmetic). | |
| language | No | Language for significant-day notes. Defaults to en. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only ('readOnlyHint': true). The description adds behavioral context: dates are calendar positions (not sighting announcements) and defaults to today. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no extraneous information. First sentence captures the core function, second sentence covers input options and a key clarification. Efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description covers input modes, defaults, and nature of dates. It is complete enough for a calendar tool, though it could mention that output includes a list of days with significance notes.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so parameters are well-documented. The description adds relational meaning: one can use either (year+month) or (date) or none, and clarifies default behavior, which goes beyond the schema's individual descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets a full Hijri month mapped to Gregorian dates with significant days, using specific verbs 'Get' and 'mapped'. It distinguishes from sibling tools like 'get_hijri_date' by emphasizing the full month and significant days.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains two input modes (Hijri year/month or Gregorian date) and notes defaults and nuances (dates are calendar positions). However, it does not explicitly compare to siblings or state when not to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_hijri_dateARead-onlyInspect
Get the Islamic (Hijri) date for a given Gregorian date, or today.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Gregorian date as YYYY-MM-DD. Defaults to today (UTC). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true. The description adds that the tool returns a Hijri date for a given Gregorian date or today. However, it does not disclose output format (e.g., string, object) or timezone handling, which are not covered by annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that is front-loaded. It could provide slightly more detail about output, but it avoids unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given one optional parameter, no output schema, and simple operation, the description is mostly adequate. However, it does not describe the return value (e.g., Hijri date string or object), leaving some ambiguity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage for the single parameter 'date', specifying format and default. The tool description does not add extra meaning beyond 'or today', so it does not compensate beyond baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the verb 'Get' and the resource 'Islamic (Hijri) date', and includes the default behavior for today. It is distinct from sibling tools which focus on prayer times, qibla, and Quran audio.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The tool's purpose is clear and distinct from siblings, but the description does not explicitly mention when to use or avoid this tool vs alternatives. The context implies usage for Hijri date conversion, but no guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_ifb_district_offsetARead-onlyInspect
Get the Islamic Foundation Bangladesh published time offset from Dhaka for a Bangladeshi district, for sehri end and iftar. Omit the district to list all 64. These are IFB's own published values, not a computation.
| Name | Required | Description | Default |
|---|---|---|---|
| district | No | District name in English or Bengali, e.g. Sylhet or সিলেট. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide readOnlyHint=true. Description adds that values are 'IFB's own published values, not a computation', which is useful behavioral context. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences: first states purpose and resource, second gives usage tip and source authority. Every word adds value, no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one optional parameter and no output schema, the description sufficiently covers what it does and how to use it. Could specify return format (e.g., minutes), but the core context is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has 1 optional parameter with 100% description coverage. Description adds meaning by explaining omission lists all districts, and provides example inputs. Baseline 3 with enhanced clarity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'Get', resource 'time offset from Dhaka for a Bangladeshi district', and specific use 'for sehri end and iftar'. It distinguishes from sibling tools (e.g., get_prayer_times, get_hijri_calendar) which cover different religious time data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly advises 'Omit the district to list all 64', providing a clear usage pattern. Does not explicitly state when not to use, but sibling tools are unrelated, so confusion is minimal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_next_prayerARead-onlyInspect
Get the next upcoming prayer and how long until it begins, for a city or coordinates.
| Name | Required | Description | Default |
|---|---|---|---|
| asr | No | ||
| city | No | City name to resolve, e.g. "Dhaka" or "Madinah". Ignored when latitude and longitude are given. | |
| method | No | ||
| latitude | No | Latitude in degrees, north positive. | |
| timezone | No | IANA timezone, e.g. "Asia/Dhaka". Used with explicit latitude/longitude. If omitted, the zone is inferred from the nearest known city and reported in the answer. | |
| longitude | No | Longitude in degrees, east positive. | |
| offset_minutes | No | Optional per-prayer adjustment in whole minutes, matching the offset settings in the Wasilah app, e.g. {"maghrib": 3}. Applies to the five obligatory prayers only; Sunrise is never offset. These are the user's own adjustments, not a calculation method. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the agent knows this is a safe read operation. The description adds minimal behavioral context by mentioning the countdown ('how long until it begins'), but does not disclose details like timezone inference, response format, or potential fallbacks. This aligns with the calibration example for get_calls, scoring a 3.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with zero fluff. Every word contributes to understanding the tool's purpose and input mode. It is an excellent example of concise, efficient writing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 7 optional parameters and no output schema, but the description covers the core purpose and the primary input modes (city/coordinates). It does not explain the full response structure or edge cases, but for a conceptually simple tool, the missing details are largely covered by the schema. This earns a 4, slightly short of a 5 due to the lack of explicit return-value description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 71%, with descriptions for city, latitude, longitude, timezone, and offset_minutes. The description itself does not add parameter semantics beyond the schema—it merely restates 'city or coordinates.' The enum parameters (asr, method) rely on their enum values. Since coverage is moderately high and the description doesn't compensate further, a baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('Get'), the resource ('the next upcoming prayer'), and an additional output ('how long until it begins'). It also specifies the input scope ('for a city or coordinates'), which distinguishes it from sibling tools like get_prayer_times.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear context for when to use this tool: when you need the next prayer and countdown. However, it does not explicitly mention alternatives or exclusions, such as using get_prayer_times for a full schedule. The clarity of the context earns a 4, but the lack of explicit differentiation from siblings prevents a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_prayer_timesARead-onlyInspect
Get the five daily prayer times plus sunrise for a city or coordinates, computed with the same engine as the Wasilah app. On Fridays, Dhuhr is marked as Jumu’ah.
| Name | Required | Description | Default |
|---|---|---|---|
| asr | No | Asr juristic method. "auto" follows the calculation method’s regional default. | |
| city | No | City name to resolve, e.g. "Dhaka" or "Madinah". Ignored when latitude and longitude are given. | |
| date | No | Date as YYYY-MM-DD. Defaults to today in the location’s timezone. | |
| method | No | Calculation method. Defaults to "karachi" (the app default). | |
| latitude | No | Latitude in degrees, north positive. | |
| timezone | No | IANA timezone, e.g. "Asia/Dhaka". Used with explicit latitude/longitude. If omitted, the zone is inferred from the nearest known city and reported in the answer. | |
| longitude | No | Longitude in degrees, east positive. | |
| offset_minutes | No | Optional per-prayer adjustment in whole minutes, matching the offset settings in the Wasilah app, e.g. {"maghrib": 3}. Applies to the five obligatory prayers only; Sunrise is never offset. These are the user's own adjustments, not a calculation method. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful behavioral context: computation uses the same engine as the Wasilah app, and Friday Dhuhr is marked as Jumu'ah. This goes beyond the annotations without repeating them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose and followed by a key edge-case behavior. No wasted words; every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 8 parameters, a nested object, and no output schema, the description is brief but sufficient for a read-only retrieval tool. It mentions the main input modes (city/coordinates), the engine provenance, and the Friday behavior. It does not detail the return format, but the phrase 'Get the five daily prayer times plus sunrise' implies the response contents.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters are already documented in the schema. The description adds minimal parameter-related meaning beyond stating 'for a city or coordinates,' which relates to city/latitude/longitude. Baseline 3 is appropriate since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves the five daily prayer times plus sunrise for a city or coordinates. The verb 'Get' is specific, the resource is well-defined, and the scope distinguishes it from sibling tools like get_next_prayer or get_hijri_date.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving daily prayer times but does not explicitly state when to use this tool versus alternatives like get_next_prayer. There is no mention of 'use this when you need all five times' or 'use get_next_prayer for the next prayer only.' Clear context is present, but no exclusion or alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_qiblaARead-onlyInspect
Get the Qibla direction (compass bearing to the Kaaba) for a city or coordinates.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City name to resolve, e.g. "Dhaka" or "Madinah". Ignored when latitude and longitude are given. | |
| latitude | No | Latitude in degrees, north positive. | |
| timezone | No | IANA timezone, e.g. "Asia/Dhaka". Used with explicit latitude/longitude. If omitted, the zone is inferred from the nearest known city and reported in the answer. | |
| longitude | No | Longitude in degrees, east positive. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the description need not re-state safety. It adds the clarification that the result is a compass bearing, which is useful, but does not disclose edge cases, error handling, or limitations beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence of 15 words. It conveys the purpose efficiently without redundancy or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema exists, but the description hints at the return value (compass bearing). With zero required parameters, the description does not explicitly state that at least one of city or latitude/longitude must be provided, which is a potential gap. The schema clarifies the precedence between inputs, so overall the definition is adequate but not exhaustive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so each parameter is already documented. The description adds a high-level summary ('for a city or coordinates') but does not add meaning beyond the schema's individual parameter descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets the Qibla direction (compass bearing to the Kaaba) for a city or coordinates. It uses a specific verb+resource and is distinguishable from sibling tools which cover prayers, calendar dates, and other religious topics.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when a Qibla direction is needed, but provides no explicit when-to-use guidance or references to alternative tools. There is no exclusion of cases where another tool would be more appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_quran_audioARead-onlyInspect
Get streaming audio for a surah, plus the surah name and ayah count. Most reciters return a single full-surah URL; the rest return per-ayah numbering to build a playlist from.
| Name | Required | Description | Default |
|---|---|---|---|
| surah | Yes | Surah number, 1 to 114. | |
| reciter | No | Reciter edition. Defaults to "ar.alafasy" (Mishary Rashid Alafasy). Only ar.alafasy, ar.abdulbasitmurattal and ar.abdullahbasfar have single-file surah audio; the others are per-ayah. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description adds behavioral detail: return of surah name and ayah count, and differences in audio format across reciters. This is valuable context not captured by annotations alone.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences without wasted words. The main purpose is front-loaded, and secondary behavioral detail is added succinctly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description adequately covers expected return content (surah name, ayah count, audio format). Parameters are well-documented. Sibling context is irrelevant. Minor gap: no mention of error cases or prerequisites.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds meaning by explaining which reciters return single-file vs per-ayah audio, aiding parameter selection beyond the enum list.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets streaming audio for a surah, plus surah name and ayah count. It specifies the difference in return format between reciters (single-file URL vs per-ayah), distinguishing this tool from siblings which handle dates or prayer times.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving surah audio but does not explicitly state when to use this tool over alternatives or provide exclusions. Sibling tools are unrelated, so no direct competition, but guidance is minimal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_tasbeehARead-onlyInspect
Look up the dhikr phrases in the Wasilah tasbeeh counter: Arabic, transliteration, English and Bengali meaning, and the customary count. Give a phrase to look one up, or omit it for all six.
| Name | Required | Description | Default |
|---|---|---|---|
| dhikr | No | Phrase to look up, by transliteration, meaning or Arabic, e.g. "SubhanAllah", "forgiveness" or "أستغفر". | |
| language | No | Language for meanings and notes. Defaults to en. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=false, so the agent knows this is a safe read operation. The description adds useful behavioral context: what data is returned (Arabic, transliteration, English/Bengali meanings, customary count) and the default behavior when no phrase is given (returns all six). This goes beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise—two short sentences that pack in purpose, input format, optional behavior, and default behavior. Every word earns its place with zero fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only lookup tool with no output schema, the description fully explains what the tool does, what arguments it accepts (via schema plus description), and what it returns. The readOnlyHint and clear usage instructions make it complete for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and both parameters ('dhikr' and 'language') already have detailed descriptions. The tool description adds some context by mentioning phrase lookup and language outputs, but it mostly reiterates schema info, so it doesn't significantly exceed the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: looking up dhikr phrases in the Wasilah tasbeeh counter with details like Arabic, transliteration, translations, and count. It distinguishes itself from siblings by specifying a unique resource (tasbeeh counter) and the exact kinds of information returned.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains how to use the tool: provide a phrase for a specific lookup or omit it for all six phrases. It doesn't explicitly mention when not to use it or point to alternatives, but given the sibling tools are clearly different (prayer times, qibla, etc.), the usage context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceProvides Islamic prayer times, Qibla direction, and Hijri calendar conversion using the Aladhan API. No API key required.7MIT
- AlicenseAqualityAmaintenanceMCP server providing Malaysian/global prayer times (JAKIM + Aladhan fallback), nearest mosque/surau finder, and Islamic calendar events.41MIT
- AlicenseBqualityCmaintenanceAzan-MCP is an open-source Model Context Protocol (MCP) server that brings a comprehensive suite of Islamic utilities directly into AI assistants such as Claude Desktop.34382MIT
- Flicense-qualityDmaintenanceEnables users to get weather information and Islamic prayer (Namaz) times, along with motivational prompts and random quotes. Integrates with OpenWeatherMap and Aladhan APIs to provide location-based weather data and prayer schedules.
Your Connectors
Sign in to create a connector for this server.