Skip to main content
Glama

inaturalist-mcp-server

Inaturalist Find Places

inaturalist_find_places
Read-only

Resolve a place name to a place id, or list the places containing a map area. Pass q to match a place-name PREFIX, or all four of nelat, nelng, swlat and swlng to list every place covering that box — exactly one of the two, never both. Each result carries the bounding box, place type, and containment chain an area search needs. Place geometry is stripped: a single nearby response carries 247 KB of boundary polygons upstream, none of which reaches the caller.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qNoPlace-name prefix to search. Matches the start of a name, not words inside it. Mutually exclusive with the bounding box.
nelatNoNorth-east corner latitude of the map area. All four corners or none.
nelngNoNorth-east corner longitude of the map area. All four corners or none.
swlatNoSouth-west corner latitude of the map area. All four corners or none.
swlngNoSouth-west corner longitude of the map area. All four corners or none.
per_pageNoMaximum places to return. Honoured on the bounding-box arm only — the name-prefix endpoint publishes no page size and returns a fixed page.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
capNoThe page size that bounded this response — per_page on the bounding-box arm, the fixed page upstream served on the name-prefix arm.
errorNoPresent when the call failed. Absent on success.
shownNoHow many places this response carries.
noticeNoGuidance when nothing matched, or when the page capped the result set.
placesNoName-prefix matches. Present on the q arm.
standardNoCurated administrative places covering the area. Present on the bounding-box arm.
communityNoMember-created places covering the area. Present on the bounding-box arm.
truncatedNoTrue when more places matched than were returned.
totalCountNoTotal places upstream matched, before any page limit.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior5/5

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

Beyond the readOnlyHint and openWorldHint annotations, the description adds valuable behavioral context: each result contains the bounding box, place type, and containment chain, and place geometry is deliberately stripped to save bandwidth, citing a concrete 247 KB payload reduction. This gives the agent a clear picture of response behavior and performance tradeoffs.

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 four sentences, each carrying distinct and useful information: purpose, usage modes with exclusivity, result contents, and payload-stripping behavior. There is no repetition of schema details and no fluff, and the most important decision information is front-loaded.

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 two-mode lookup tool with no required parameters SF DA, the description covers the decision point, the mutual-exclusion rule, what each result contains, and an important performance behavior. The schema and output schema fill in the remaining structural details, so nothing needed to invoke the tool correctly 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?

The input schema already documents all six parameters with 100% coverage, including mutual exclusivity, corner constraints, and the per_page behavior on only the bounding-box arm. The description reinforces the q-vs-box framing but adds little new parameter meaning beyond what the schema already provides, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the two things the tool does: resolving a place name to a place id and listing places covering a bounding box. It is explicit about the resource ('place') and the two modes, but it does not explicitly distinguish itself from a sibling like inaturalist_resolve_name, so the differentiation is implicit rather than named.

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 gives explicit invocation guidance for both modes: pass q for a prefix match, pass all four bounding-box corners to list covering places. It also states the critical constraint that exactly one of the two modes must be used, never both, which is exactly the usage decision an agent needs.

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.