vernacular

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

“What’s the common name for [Latin binomial]” / “what do people call [scientific name]” / “vernacular names of [species]” — list common/vernacular names (in various languages) for a Catalogue of Life taxon. Use to map “Panthera leo” → “lion” / “leon” / “lwów” etc.

Parameters

NameTypeRequiredDescription
idstringyes
datasetstringno

Example call

Arguments

{
  "id": "7XCCF"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('vernacular', {
  "id": "7XCCF"
});

Response shape

Always returns: items, count

FieldTypeDescription
itemsarrayVernacular (common) names for a taxon
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Vernacular (common) names for a taxon",
      "items": {
        "type": "object"
      }
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build June 12, 2026