Skip to main content
Glama

find_churches

Read-only

Find churches near a location from SoapBox's public church directory. Given latitude/longitude (and optional radius, denomination filter), returns nearby churches with name, denomination, city/state/country, website, distance in miles, and whether the church is on SoapBox (with its community id for deep-linking). Public directory data only — no personal contact info.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latYesLatitude of the search center, in decimal degrees.
lngYesLongitude of the search center, in decimal degrees.
limitNoMaximum number of churches to return.
denominationNoOptional case-insensitive denomination filter.
radius_milesNoSearch radius in miles.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed18 schema fields changed
    • changedInput schema / properties / denomination / description
      Previous value: -"Optional denomination filter, e.g. 'Baptist'."New value: +"Optional case-insensitive denomination filter."
    • addedInput schema / properties / denomination / examples
      Added value: +[
      +  "Baptist",
      +  "Catholic",
      +  "Non-denominational"
      +]
    • changedInput schema / properties / lat / description
      Previous value: -"Latitude of the search center."New value: +"Latitude of the search center, in decimal degrees."
    • addedInput schema / properties / lat / examples
      Added value: +[
      +  34.0522
      +]
    • addedInput schema / properties / lat / maximum
      Added value: +90
    • addedInput schema / properties / lat / minimum
      Added value: +-90
    • addedInput schema / properties / limit / default
      Added value: +10
    • changedInput schema / properties / limit / description
      Previous value: -"Max results (default 10, max 25)."New value: +"Maximum number of churches to return."
    • addedInput schema / properties / limit / maximum
      Added value: +25
    • addedInput schema / properties / limit / minimum
      Added value: +1
    • changedInput schema / properties / lng / description
      Previous value: -"Longitude of the search center."New value: +"Longitude of the search center, in decimal degrees."
    • addedInput schema / properties / lng / examples
      Added value: +[
      +  -118.2437
      +]
    • addedInput schema / properties / lng / maximum
      Added value: +180
    • addedInput schema / properties / lng / minimum
      Added value: +-180
    • addedInput schema / properties / radius_miles / default
      Added value: +25
    • changedInput schema / properties / radius_miles / description
      Previous value: -"Search radius in miles (default 25, max 100)."New value: +"Search radius in miles."
    • addedInput schema / properties / radius_miles / maximum
      Added value: +100
    • addedInput schema / properties / radius_miles / minimum
      Added value: +1
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare read-only and non-destructive. The description adds context about the public directory scope, absence of personal contact info, and the specific return fields including distance and SoapBox status, going 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.

Conciseness5/5

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

The description is two sentences, front-loaded with the main action, and every phrase adds value. No filler or redundancy.

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?

With no output schema, the description enumerates the return fields and the data scope, which is essential. It does not cover edge cases or error behavior but is sufficient for a straightforward lookup tool with strong annotations.

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 coverage is 100% with descriptions for all five parameters including types, ranges, and defaults. The description only mentions 'optional radius, denomination filter', which duplicates the schema, adding no new 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?

The description uses a specific verb 'Find' with a clear resource 'churches near a location' and details what is returned. It distinguishes itself from sibling tools like browse_catalog by focusing on church location search.

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

Usage Guidelines3/5

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

The description implies usage when needing nearby churches but does not explicitly state when not to use it or mention alternatives. The note about public data is a constraint, not a comparative guideline.

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.

Resources