Skip to main content
Glama
idss-mesa

neon-mcp

by idss-mesa

Find NEON locations

neon_find_locations
Read-onlyIdempotent

Find NEON ecological sampling locations by hierarchy, type, text, or proximity. Filter towers, huts, plots, and more under a site or domain, with coordinates for mapping or detail lookup.

Instructions

Locations under a site, domain, REALM or named location, filtered by locationType (towers, huts, megapits, soil plots, observation plots, ...) or text, with coordinates and optional proximity. REALM and domain walks need location_type; site walks without it report typesAvailable. Next: call neon_get_location for one location's detail.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
rootNoWalk the hierarchy under REALM, a domain (D01), a site (HARV) or any named location.
limitNo
queryNoSubstring filter on name or description.
offsetNo
latitudeNoWith longitude: nearest first, within radius_km.
longitudeNo
max_depthNoDeepest hierarchy level to return.
radius_kmNo
site_codesNoWalk these sites instead (codes or names, up to 20).
location_typeNoKeep only this type: TOWER, HUT, MEGAPIT, SOIL_PLOT, 'OS Plot - mam', ... (see neon://reference/vocabularies). Required under REALM or a domain; prunes the walk upstream.
include_coordinatesNoLook up coordinates for the returned page (batched).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageYes
itemsYes
notesNo
rootsYes
sourceNo
resolvedNo
nextStepsNo
locationTypeNo
typesAvailableNo
hierarchyNodesScannedYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already establish readOnly, idempotent, open-world, and non-destructive behavior, so the description's job is additive. It adds meaningful behavioral detail: the location_type requirement differs by walk root, and site walks without location_type report typesAvailable. This goes beyond the schema and annotations without contradicting them.

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 carry the core purpose, key constraints, and the natural follow-up action. The first sentence front-loads the resource and filters; the second adds the critical conditional behavior; the third points to the next call. There is no filler or repetition.

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?

For an 11-parameter tool with an output schema and strong annotations, the description covers the key invocation conditions and workflow. The schema supplies most per-parameter meaning, and the output schema removes the need to describe return values. A slightly explicit note distinguishing this from neon_search_sites would make it fully complete.

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?

With 64% schema description coverage, the schema already documents most parameters. The description adds only a high-level summary ('filtered by locationType ... or text, with coordinates and optional proximity') and one behavioral nuance about site walks reporting typesAvailable. This is helpful but does not materially clarify the parameters not covered by 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 states a specific verb and resource: find locations under a site, domain, REALM, or named location. It also lists meaningful filters (locationType, text, coordinates/proximity) and distinguishes itself from the singular neon_get_location by saying 'Next: call neon_get_location for one location's detail.' This gives an agent a clear, differentiated job.

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 provides clear usage context: REALM and domain walks require location_type, while site walks without it report typesAvailable. It also suggests when to chain into neon_get_location. It does not explicitly name alternatives such as neon_search_sites or state when not to use this tool, so it falls one step short of full routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.