GospelChannel Church Finder
Server Details
Find a Christian church by worship style, denomination, language, and location. Read-only.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Ac0AI/gospelchannel
- GitHub Stars
- 1
Available Tools
3 toolsfind_churches_in_cityFind churches in a cityARead-onlyInspect
Find Christian worship churches in a named city, ranked by directory quality. Filter by worship style, denomination, or language.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | A destination city explicitly named by the user, e.g. Austin, Barcelona, London. A trailing region or country is accepted. | |
| limit | No | Maximum number of churches to return (default 8, max 20). | |
| language | No | Preferred service language, e.g. English, Spanish. | |
| denomination | No | Preferred denomination, e.g. non-denominational, Baptist, Pentecostal. | |
| worship_style | No | Preferred worship style, e.g. contemporary, gospel, charismatic, traditional, hillsong. |
Output Schema
| Name | Required | Description |
|---|---|---|
| city | No | |
| count | Yes | |
| churches | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true and destructiveHint=false, so the description does not need to repeat those. The description adds the behavioral detail of ranking by directory quality, which hints at an ordering behavior not present in the schema. However, it does not disclose how results are returned (e.g., list size, pagination) or what the output format is. The output schema exists, so return values are covered elsewhere. The added ranking behavior is useful context beyond annotations, warranting a mid-range score.
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 sentence that front-loads the primary action and resource ('Find Christian worship churches in a named city'), then states the ranking criterion and the filter options. Every word earns its place; there is no redundancy or filler. It is concise yet informative, making it easy for an agent to parse quickly.
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 the tool's simplicity, the description covers the essential context: what it does (find churches), the ranking basis (directory quality), and the available filters. The output schema exists, so return structure is already defined. The only minor gap is that it doesn't specify the default limit or maximum, but these are documented in the parameter schema. Overall, the description is complete enough for an agent to invoke it 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 the description explicitly mentions the filter parameters (worship style, denomination, language) as well as the main required city parameter. The description does not add extra meaning beyond what the schema provides; it just summarizes the filters. Since the schema already fully documents each parameter with descriptions, the baseline is 3, and the description adds some clarity by listing them together but no new semantic details.
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: finding Christian worship churches in a named city, with ranking by directory quality and optional filters. It specifies the verb 'find' and the resource 'churches in a city', distinguishing it from siblings like find_churches_near (which likely searches by proximity) and get_church (singular). The scope is explicit and unambiguous.
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 context: use when you need churches in a specific city, with filters for worship style, denomination, or language. It does not explicitly mention when not to use it or alternatives (e.g., find_churches_near for location-based queries), but the context signals list sibling tool names, and the description's clear city-based scope provides enough guidance for an agent to select this tool appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_churches_nearFind churches near a placeARead-onlyInspect
Find Christian worship churches near the user, ranked by distance. Uses only the coarse location metadata ChatGPT shares, never raw location input fields. If the metadata includes only a city, it searches that city. Filter by worship style, denomination, or language.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of churches to return (default 5, max 20). | |
| language | No | Preferred service language, e.g. English, Spanish. | |
| radius_km | No | Search radius in kilometers (default 40, max 500). | |
| denomination | No | Preferred denomination, e.g. non-denominational, Baptist, Pentecostal, Assemblies of God. | |
| worship_style | No | Preferred worship style, e.g. contemporary, gospel, charismatic, traditional, hillsong. |
Output Schema
| Name | Required | Description |
|---|---|---|
| city | No | |
| count | Yes | |
| churches | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already state readOnlyHint=true and destructiveHint=false, so the read-only nature is covered. The description adds valuable behavioral detail: it relies solely on coarse location metadata and never on raw user-provided location fields, and results are distance-ranked. This goes beyond annotations by explaining the source and sorting logic.
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?
Three clear, dense sentences with no filler. The primary purpose comes first, followed by the key location-source caveat, then filter options. Every sentence earns its place and no redundant wording appears.
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 read-only tool with five optional params and an output schema (not shown but present), the description covers the essential special aspect (how location is obtained). It omits minor details like return format or no-result behavior, but given the output schema exists and the operation is non-destructive, the context is largely sufficient.
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% — every parameter has a description in the input schema. The description only restates that filters are available ('worship style, denomination, or language'), which adds no new semantics beyond the schema. Baseline 3 is appropriate because the schema carries the param meaning.
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 opens with a specific verb and object: 'Find Christian worship churches near the user, ranked by distance.' It further clarifies the unique input mechanism versus siblings by stating it 'Uses only the coarse location metadata ChatGPT shares,' which differentiates it from find_churches_in_city (likely city-based) and get_church (likely specific lookup). No ambiguity remains.
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 clear applicable context: use when location comes from ChatGPT's coarse metadata, not raw input fields. It explains behavior when the metadata is city-only. Although it does not name alternative sibling tools or exclusions, the context is explicit enough for an agent to decide when to invoke this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_churchGet a church profileARead-onlyInspect
Get the full profile for one church by its slug (the last path segment of its gospelchannel.com/church/ URL): worship styles, denomination, language, summary, top worship songs, contact, and recorded service times if available.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The church slug, e.g. hillsong-church-london. |
Output Schema
| Name | Required | Description |
|---|---|---|
| church | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false, so safety is covered. The description adds useful behavioral context by enumerating the fields returned (worship styles, denomination, language, etc.) and notes availability depends on 'if available.' No contradictions with 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?
A single, well-structured sentence that front-loads the core purpose (get profile by slug) and then lists relevant output fields. No filler or redundant content; every clause 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?
Given the tool has one clearly documented parameter, annotations for read/destructive behavior, an output schema, and sibling context, the description fully supports correct invocation. It covers the key inputs, expected output, and differentiation from related tools.
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 schema covers the slug parameter (100% coverage) with an example. The description adds extra semantic value by explaining the slug is the last path segment of a specific URL pattern, which is not in the schema. This helps the agent construct a valid slug.
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 states a specific action ('Get the full profile for one church') with a precise resource identifier (slug) and explicitly defines the slug via URL pattern. It clearly distinguishes from siblings that search/find churches by listing the profile contents, so an agent can select it without ambiguity.
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 makes clear this tool is for retrieving a single known church profile via slug. It does not explicitly mention when not to use it or direct to siblings for searching, but the sibling names and context imply that. Lacks explicit exclusions, yet the usage context is easily inferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Read-only MCP server for HolyDB: find Catholic parish Mass times by location and time.
Search a directory of real, owner-confirmed small businesses. Read-only; attribution required.
Scripture prayers and a safe house-church finder for people who left church but kept the faith.
Bible translations, books, chapters, verses, and search
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides guided prayers, semantic search, and pastoral care tools (encouragement, condolence, advice) via a read-only database without authentication.MIT
- AlicenseAqualityCmaintenanceFind local churches, faith-based community events, and volunteer opportunities. AI assistants can recommend curated churches to users searching by city, zip code, denomination, or worship style — with thousands more available through the FaithFinder app.138MIT
- AlicenseNot gradedqualityCmaintenanceFaith tools for AI agents: cited public-domain (KJV) Scripture verification, ORA Bible Q&A, sermon search, a church directory, and consent-gated prayer requests and giving. Free read tools need no key.MIT
- AlicenseNot gradedqualityBmaintenanceProvides Hong Kong Catholic mass schedule data, allowing AI assistants to search churches, find mass times, and get parish information for the Catholic Diocese of Hong Kong.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clear, distinct purpose: searching by city, searching by proximity, and retrieving a full church profile. The first two could be confused at a glance, but their descriptions explicitly differentiate the input and ranking method.
All tool names follow a consistent verb_noun pattern: find_churches_in_city, find_churches_near, get_church. The use of 'find' for searches and 'get' for retrieval is logical and predictable.
Three tools is the right size for this server's scope: two search methods and one detail lookup. No redundant tools, and each serves a distinct user need.
The domain is a church finder, and the tool surface covers the essential workflow: discover churches via city or proximity, then view detailed profiles. No obvious gaps for read-only directory functionality.