Skip to main content
Glama

national-parks-mcp-server: get park detail

nps_get_park
Read-only

Full trip-planning detail for one or more parks by parkCode: description, activities and topics, entrance fees and passes, operating hours by area/season, contacts, directions, a free-text weather overview, representative images, and the NPS page for everything else. Get codes from nps_find_parks. Up to ten codes are fetched in a single request. Use the fields parameter to trim the payload when you only need certain sections.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fieldsNoOptional detail sections to include beyond the always-present core (name, designation, states, description, coordinates, weather, url). Omit for all sections. Narrow to reduce payload when you only need, say, hours and fees.
parkCodeYesOne to ten park codes (each a 4-letter lowercase code like "yose", "grca", "zion"). Get codes from nps_find_parks. Multiple codes are fetched in a single request.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNoPresent when the call failed. Absent on success.
parksNoRequested parks with trip-planning detail.
noticeNoGuidance when one or more codes did not resolve, or when none did.
missingCodesNoRequested park codes the API returned no record for — likely invalid/misspelled codes. Populated only when some codes did not resolve.
returnedCountNoNumber of parks the API returned.
requestedCountNoNumber of park codes requested.

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, lowering the burden. The description adds value beyond annotations: single-request batching up to ten codes, the always-present core-field set vs. optional sections, and a pointer to the NPS page for anything not covered. No contradiction with annotations; 'get' aligns with the read-only hint.

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?

A single dense paragraph where every sentence earns its place: content list, code source, batching limit, and payload trimming. It is slightly longer than the leanest ideal but sharply front-loaded with the purpose and scoping guidance, with no filler 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 the output schema documents return values and annotations cover safety, the description supplies the remaining operational context: content scope, batching, code acquisition, payload control, and a fallback pointer to the NPS page. A minor gap is behavior for invalid/unknown codes, but overall the agent has everything needed to call it correctly.

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% and both parameters are thoroughly documented: parkCode specifies format, examples, count range and batching; fields lists all enum values and the omit-for-all behavior. The description largely reiterates what the schema already states ('Get codes from nps_find_parks', 'single request'), adding little new semantic meaning beyond the structured definitions.

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-resource pair (get park detail by parkCode) and enumerates the full content sections returned (description, activities, topics, fees, hours, contacts, directions, weather, images, NPS page). This fully differentiates it from siblings like nps_get_alerts and nps_get_activities without needing to inspect their schemas.

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?

Provides concrete usage context: how to obtain valid codes (from nps_find_parks), that up to ten codes fetch in one request, and that the fields parameter trims payloads. It does not name explicit when-not-to-use conditions or alternative siblings for cases like current alerts, but the cross-tool routing to nps_find_parks is clear and actionable.

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 targets a distinct domain resource: parks, park details, alerts, events, activities, and campgrounds. There is no overlap in purpose; an agent can unambiguously select the right tool for a query.

Naming Consistency5/5

All tools follow a consistent `nps_` prefix with a verb-noun pattern (`find_*` or `get_*`). The only minor variation is singular/plural nouns, but this is predictable and does not hinder understanding.

Tool Count5/5

Six tools is well-scoped for a national parks API, each covering a core aspect of trip planning (lookup, detail, alerts, events, activities, campgrounds). No tool feels redundant or unnecessary.

Completeness4/5

The surface covers primary trip-planning needs: finding parks, getting detailed info, checking alerts, seeing events, exploring activities, and finding campgrounds. Minor gaps like webcams or permits are non-essential, but the set is nearly complete.