Skip to main content
Glama

Get Facility

get_facility
Read-onlyIdempotent

Get full details for a single Recreation.gov facility (e.g. a campground) by its FacilityID. Returns description, directions, ADA access, phone/email, keywords, and coordinates. Example: get_facility({ facility_id: "232447" })

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
_apiKeyNoOptional — your own Recreation.gov RIDB API key for higher limits; omit to use the shared Pipeworx key.
facility_idYesRIDB FacilityID, e.g. "232447"

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so the safety profile is fully covered. The description adds a useful return-field list (description, directions, ADA access, etc.), which is valuable because there is no output schema, but it does not disclose rate limits, auth needs, or failure behavior. 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?

Two sentences with no waste: the first states the core purpose, the second lists return contents and provides a concrete invocation example. The example earns its place by showing the exact parameter shape. Front-loaded and well-structured.

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?

For a simple read-only tool with strong annotations and full schema coverage, the description plus schema provides everything needed to call it correctly: the required ID, the optional API key, expected return fields, and a worked example. Because there is no output schema, the return-field list in the description is an important addition. Nothing critical is missing.

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 description coverage is 100%, so both facility_id and _apiKey are already documented in the schema. The description's example repeats the schema example and reinforces that facility_id is the lookup key, but it adds little semantic meaning beyond that. Baseline 3 is appropriate.

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?

States a specific verb and resource: 'Get full details for a single Recreation.gov facility... by its FacilityID.' The 'single' qualifier clearly distinguishes it from search-oriented siblings like search_facilities and list_campsites. No ambiguity about what the tool does.

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: call it when you already have a FacilityID and need full details for one facility. However, it does not explicitly name alternatives like search_facilities for discovery, nor does it provide when-not-to-use guidance. The usage context is implicit rather than explicitly contrasted with siblings.

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

B3.4/5.0
Disambiguation2/5

Many tools cluster around the same purpose: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, deep_research, and validate_claim all route questions to similar data sources, and the polymarket_* family has several overlapping edge/arbitrage scanners. The four Recreation.gov tools are distinct but are buried among unrelated Pipeworx tools, making selection ambiguous.

Naming Consistency3/5

Names are all snake_case and readable, with recognizable prefix families like ask_pipeworx*, polymarket_*, and pipeworx_* plus verb_noun names like search_facilities and list_campsites. However, the conventions are mixed: bare verbs, brand prefixes, and composite names coexist, and nothing in the naming signals that this is a Recreation.gov server.

Tool Count1/5

This server is named Recreation Gov but only 4 of 35 tools relate to recreation facilities; the other 31 are a general-purpose data, research, and prediction-market platform. That is an extreme scope mismatch for the server's stated purpose.

Completeness2/5

For the Recreation.gov surface, basic search and detail retrieval exist, but key operations like campsite availability, reservations, and permits are missing. The dominant Pipeworx functionality is unrelated to Recreation.gov, so the tool set as a whole has no coherent domain coverage.