Skip to main content
Glama

Find Similar Campgrounds

find_similar_campgrounds
Read-only

Find campgrounds similar to a given campground using vector embedding similarity.

Uses pre-computed embeddings combining review text (semantic) and structured attributes (amenities, terrain, activities) for nuanced similarity matching.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
result_limitNoNumber of results (1-50, default 20)
campground_idYesCUID of the target campground to find similar ones for
max_distance_kmNoOptional max distance in km (omit for nationwide search)
semantic_weightNoWeight for text/review similarity (0-1, default 0.6)
structured_weightNoWeight for attribute similarity (0-1, default 0.4)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed6 schema fields changed
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / properties / campground_id / description
      Added value: +"CUID of the target campground to find similar ones for"
    • addedInput schema / properties / max_distance_km / description
      Added value: +"Optional max distance in km (omit for nationwide search)"
    • addedInput schema / properties / result_limit / description
      Added value: +"Number of results (1-50, default 20)"
    • addedInput schema / properties / semantic_weight / description
      Added value: +"Weight for text/review similarity (0-1, default 0.6)"
    • addedInput schema / properties / structured_weight / description
      Added value: +"Weight for attribute similarity (0-1, default 0.4)"
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already indicate a read-only, non-destructive operation. The description adds meaningful behavioral context by explaining that pre-computed embeddings are used and that similarity combines semantic and structured attributes, which implies a dependency on precomputed data. 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?

The description is two sentences, front-loads the core purpose, and adds a second sentence to clarify the algorithm without unnecessary fluff. Every word earns its place.

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?

The tool has a rich schema (100% coverage) and an output schema, so the description does not need to explain return values. It covers the algorithm and key parameters, though it does not mention potential edge cases like what happens if no embeddings exist or if campground_id is invalid. Overall adequate for the complexity.

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 detailed parameter descriptions for result_limit, campground_id, max_distance_km, semantic_weight, and structured_weight. The description adds only a brief conceptual link between the embedding types and the weight parameters, but the schema already explains the meaning and defaults, so the value added is marginal.

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 states a specific verb ('find') and resource ('campgrounds similar to a given campground'), and distinguishes itself from sibling tools like search_campgrounds by detailing the method ('vector embedding similarity'). It is clear and specific.

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 context (when you have a campground and want similar ones) but does not explicitly contrast with search_campgrounds or other alternatives. There is no 'when not to use' guidance, so it falls short of explicit 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.1/5.0
Disambiguation4/5

Most tools have clearly distinct purposes (search, details, availability, weather, etc.), but build_packing_list and get_gear_for_campground both deal with gear recommendations, and check_safety overlaps with the safety section in get_campground_details. However, the descriptions are detailed enough for an agent to choose correctly.

Naming Consistency4/5

Tool names follow a consistent verb_noun pattern (build_, calculate_, check_, compare_, find_, get_, prepare_, search_) with the exception of health_check, which reverses the order and breaks the pattern. This is a minor deviation.

Tool Count5/5

13 tools is well-scoped for a comprehensive outdoor trip planning server, covering search, details, availability, weather, safety, gear, and reservations without being excessive or sparse.

Completeness5/5

The server provides end-to-end coverage for planning a camping trip: search and filter campgrounds, get rich details, check availability, prepare reservations, evaluate safety, weather, drive times, gear recommendations, and packing lists. The only missing capability (direct booking) is intentionally excluded due to operator restrictions.

Resources