search_species

Pack: worms · Endpoint: https://gateway.pipeworx.io/worms/mcp

Resolve a marine species or genus name to its WoRMS AphiaID, accepted name, authority, status (accepted/unaccepted), rank, and high-level classification (kingdom/family/genus). WoRMS is the authoritative world register of marine species. Keyless.

Parameters

NameTypeRequiredDescription
namestringyesScientific name to look up, e.g. “Orcinus orca” or “Octopus”.
fuzzybooleannoFuzzy/like matching (LIKE substring). Default false (exact).
marine_onlybooleannoRestrict to marine taxa. Default true.

Example call

Arguments

{
  "name": "Orcinus orca"
}

curl

curl -X POST https://gateway.pipeworx.io/worms/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_species","arguments":{"name":"Orcinus orca"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_species', {
  "name": "Orcinus orca"
});

More examples

{
  "name": "Octopus",
  "fuzzy": true,
  "marine_only": true
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "worms": {
      "url": "https://gateway.pipeworx.io/worms/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026