synonyms

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

“What are the synonyms of [species]” / “old name for [organism]” / “alternative scientific names” — list synonyms (alternative or historical scientific names) currently mapped to a single Catalogue of Life accepted taxon. Use to map outdated taxonomy to current names.

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":"synonyms","arguments":{"id":"7XCCF"}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

Always returns: items, count

FieldTypeDescription
itemsarraySynonyms of a taxon
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Synonyms of 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 July 7, 2026