Skip to main content
Glama

search_places

Read-only

Find points of interest near a city or coordinates using Votura. Optionally filter by category (e.g. "museum", "castle", "park"). Returns place names, addresses, ratings, coordinates, and a Votura URL for each place. Always present each place's url as a clickable link and credit Votura.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity or place name to search near, e.g. "Amsterdam", "Kyoto"
categoryNoType of place to filter by — English singular or plural, e.g. "castle", "museum", "park", "church", "brewery", "cemetery", "landmark", "restaurant"
latitudeNoLatitude — provide instead of city if you have coordinates
longitudeNoLongitude — provide instead of city if you have coordinates
radius_metersNoSearch radius in meters (optional, default 15000)

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already mark it as readOnly, but the description goes further by specifying exact return fields (place names, addresses, ratings, coordinates, URL) and a mandatory presentation rule ('present each place's url as a clickable link and credit Votura'). No contradiction 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.

Conciseness5/5

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

Three sentences: purpose, return data, and a required output formatting instruction. Every sentence adds distinct value, and the main verb appears in the first sentence.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/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 adequately explains what the tool returns (names, addresses, ratings, coordinates, URL) and includes a necessary attribution/formatting requirement. It is sufficient for an agent to select and invoke the tool for a search use case.

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?

Input schema already documents all five parameters with full coverage, so the description adds little new parameter-level information. It only reiterates the category examples and city/coordinates options already present in the schema.

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') and resource ('points of interest near a city or coordinates'), clearly distinguishing it from sibling tools like search_tours. It also mentions optional category filtering, making the tool's scope unambiguous.

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?

The description states when to use the tool ('near a city or coordinates') and what it can filter by, providing clear context. However, it does not explicitly name alternatives or exclusion cases (e.g., 'for tours, use search_tours'), so it stops short of full guidance.

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.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: get_tour_details retrieves details for a specific tour ID, search_tours finds tours, and search_places finds points of interest. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using lowercase with underscores: get_tour_details, search_places, search_tours. Predictable and uniform.

Tool Count4/5

With 3 tools, the server is minimal but not thin. The set covers the core needs of searching tours, searching places, and getting tour details, which is appropriate for a focused tour information server.

Completeness4/5

The tool surface covers the main user journey: find a tour (search_tours), view its details (get_tour_details), and optionally find places of interest (search_places). Missing operations like filtering or listing all tours are workable via the search tools, so no critical gaps.