iNaturalist
liveScienceBiologyCitizen-science species observations — observation search, taxa lookup, top species at a place. No auth.
3tools
0msauth
free tier50 calls/day
Tools
search_observationsSearch 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 nameplaceoptstringPlace name (auto-resolved)yearoptnumberFilter to a yearthreatenedoptbooleanIUCN-threatened onlyquality_gradeoptstringcasual | needs_id | research (default research)per_pageoptnumber1-200 (default 20)Try it
Response
search_taxarequired: querySearch iNaturalist taxa by name. Returns taxon ID, rank, ancestry, conservation status, photo.
Parameters
NameTypeDescription
queryreqstringCommon or scientific namerankoptstringRestrict to a rankper_pageoptnumber1-30 (default 10)Try it
Response
top_speciesrequired: placeMost-observed species in a place over an optional date range. Auto-resolves place name.
Parameters
NameTypeDescription
placereqstringPlace nameyearoptnumberOptional year filterper_pageoptnumber1-50 (default 20)Try it
Response
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");