Skip to main content
Glama

Find places worth a detour near a point

places_near

List notable places within a radius of a WGS84 coordinate, most famous first (rank order), each with distance_km — the direct answer to "what is worth visiting near ?". Radius defaults to 50 km (max 500). Geocode the location yourself, then call this with its latitude/longitude. Filter by kind to answer e.g. "waterfalls near Zurich".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoKind of place — key or slug: ruins (Archaeological), natural (Nature) (optional)
limitNoMax results (default 15)
latitudeYes
longitudeYes
radius_kmNoSearch radius in km (default 50)

TDQS

A4.4/5.0
Behavior4/5

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

No annotations exist, so the description carries the full burden. It discloses output ordering ('most famous first, rank order'), the inclusion of distance_km, and radius limits (default 50, max 500). This provides meaningful behavioral insight beyond the schema.

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 concise with four short sentences, each adding essential information: core function, radius defaults, geocoding prerequisite, and filtering example. No fluff 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?

Given no output schema or annotations, the description covers the tool's purpose, input format, ordering, distance metric, and filtering. It lacks a full return-field list, but the mention of distance_km and rank order gives sufficient expectation for a list tool.

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 covers kind, limit, and radius_km with descriptions, but latitude/longitude only have bounds. The description compensates by explaining WGS84 coordinates and instructing to geocode first, and clarifies radius defaults. It also illustrates kind usage with the waterfall example, adding value over the schema's cryptic note.

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 clearly states the tool lists notable places within a radius, ordered by fame, with distance_km. This distinguishes it from siblings like get_place (single place) or search_places (likely query-based).

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?

It explicitly says to geocode the location yourself, providing a prerequisite. It also gives a concrete example 'waterfalls near Zurich' and explains that filtering by kind answers such queries. It doesn't explicitly name alternatives but the context implies it's for coordinate-based discovery.

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.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct query type: single record by slug, aggregate stats, country listing, kind listing, radius search, random selection, name search, and ranked top list. No two tools answer the same question.

Naming Consistency3/5

Mix of verb-noun (get_place, list_countries, search_places) and noun-phrase tools (random_place, top_places, places_near). 'places_near' breaks the pattern, but all are snake_case and readable.

Tool Count5/5

8 tools is well-scoped for a read-only places atlas; each tool serves a distinct user need with no redundancy.

Completeness5/5

Covers all expected read-only operations: lookup by identifier, search by name, spatial query, ranking, random, aggregates, and browse by country/kind. No missing lifecycle operations since the domain is read-only.

Resources