iNaturalist

liveScienceBiology

Citizen-science species observations — observation search, taxa lookup, top species at a place. No auth.

3tools
0msauth
free tier50 calls/day

Tools

search_observations

Search citizen-science observations. Filter by taxon name (common or scientific), place, year, threatened status, or quality grade. Auto-resolves taxon and place names. Returns photographed sightings with coordinates and observer info.

Parameters
NameTypeDescription
taxon_nameoptstringScientific or common name
placeoptstringPlace name (auto-resolved)
yearoptnumberFilter to a year
threatenedoptbooleanIUCN-threatened only
quality_gradeoptstringcasual | needs_id | research (default research)
per_pageoptnumber1-200 (default 20)
Try it
search_taxarequired: query

Search iNaturalist taxa by name. Returns taxon ID, rank, ancestry, conservation status, photo.

Parameters
NameTypeDescription
queryreqstringCommon or scientific name
rankoptstringRestrict to a rank
per_pageoptnumber1-30 (default 10)
Try it
top_speciesrequired: place

Most-observed species in a place over an optional date range. Auto-resolves place name.

Parameters
NameTypeDescription
placereqstringPlace name
yearoptnumberOptional year filter
per_pageoptnumber1-50 (default 20)
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/inaturalist/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/inaturalist/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_observations","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_observations", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("citizen-science species observations — observation search, taxa lookup, top species at a place");