
Connects Claude to iNaturalist's citizen science database of wildlife observations and species identifications. Read-only access requires no authentication. Instead of wrestling with individual tool calls, you can use ask_pipeworx to query in plain English and let the gateway handle routing and parameters. Part of the larger Pipeworx ecosystem that bundles 250+ data sources behind a single MCP endpoint. Useful when you need real-world biodiversity data, want to identify species from observations, or are building nature-related applications that benefit from crowdsourced field research. The MIT licensed server runs as a hosted gateway rather than a local process.
iNaturalist citizen-science observations MCP — read-only, no auth.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
search_observations(taxon_name?, place?, year?, threatened?, quality_grade?, per_page?) — observation search with auto-resolved taxon and place names.search_taxa(query, rank?, per_page?) — find taxa by common or scientific name.top_species(place, year?, per_page?) — most-observed species at a place.https://api.inaturalist.org/v1/ — public REST API, no key required for read-only.
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"inaturalist": {
"url": "https://gateway.pipeworx.io/inaturalist/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/inaturalist/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Inaturalist data" })
The gateway picks the right tool and fills the arguments automatically.
MIT
curl -X POST https://gateway.pipeworx.io/v1/tools/search_observations \
-H 'Content-Type: application/json' \
-d '{"taxon_name":"Pandion haliaetus","place":"California","quality_grade":"research"}'
No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/search_observations. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.