Skip to main content
Glama
ogSINGH

OpenStreetMap MCP Server v2

by ogSINGH

find_schools_nearby

Locate schools, colleges, and universities within a set radius of any coordinates, filtered by education level, to evaluate neighborhoods for families or real estate.

Instructions

Locate educational institutions near a specific location, filtered by education level.

This specialized search tool identifies schools, colleges, and other educational institutions within a specified distance from a location. Results can be filtered by education level (elementary, middle, high school, university, etc.). Essential for families evaluating neighborhoods or real estate purchases with education considerations.

Args: latitude: Center point latitude (decimal degrees) longitude: Center point longitude (decimal degrees) radius: Search radius in meters (defaults to 2000m/2km) education_levels: Optional list of specific education levels to filter by (e.g., ["elementary", "secondary", "university"])

Returns: List of educational institutions with: - Name and type - Distance from search point - Education levels offered - Contact information if available - Other relevant metadata

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
radiusNo
latitudeYes
longitudeYes
education_levelsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations at all, the description carries the full behavioral burden, yet it discloses no limits: no auth/permission requirements, no maximum radius or result count, no pagination or sorting behavior, no note on whether results are cached or how distance is computed. The only behavioral detail (radius default of 2000m) is really parameter information.

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?

Purpose and scope are front-loaded in the first two sentences, and the Args block is compact. The Returns section is somewhat redundant given an output schema exists, which costs a little conciseness but not much.

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?

For a 4-parameter geo-search with an output schema, the definition covers the required inputs, units, defaults and filter semantics, so an agent can call it correctly. The main gap is routing guidance versus the many nearby siblings and any result-limit expectations.

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 description coverage is 0%, so the description must compensate and largely does: it explains latitude/longitude as the search center in decimal degrees, radius as meters with a 2000m default, and education_levels as an optional filter with concrete example values. It stops short of enumerating the valid education-level strings, which the schema does not constrain with an enum either.

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

Purpose4/5

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

The description gives a specific verb (locate/find) and resource (educational institutions: schools, colleges) and frames itself as a 'specialized search tool', which implies it is narrower than generic place search. It does not, however, explicitly name or distinguish itself from siblings like find_nearby_places or analyze_neighborhood, so an agent must infer the boundary.

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?

It offers a motivating context ('essential for families evaluating neighborhoods or real estate') which implies when to reach for it, but gives no explicit when-not guidance and never names an alternative such as find_nearby_places or search_category. Usage is implied rather than stated.

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