taxonomy

Pack: mygene-info · Endpoint: https://gateway.pipeworx.io/mygene-info/mcp

Species taxonomy info.

Parameters

NameTypeRequiredDescription
speciesstringyes

Example call

Arguments

{
  "species": "human"
}

curl

curl -X POST https://gateway.pipeworx.io/mygene-info/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"taxonomy","arguments":{"species":"human"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('taxonomy', {
  "species": "human"
});

More examples

{
  "species": "9606"
}

Response shape

FieldTypeDescription
taxidnumberNCBI taxonomy ID
speciesstringSpecies common name
scientific_namestringScientific species name
rankstringTaxonomic rank
Full JSON Schema
{
  "type": "object",
  "properties": {
    "taxid": {
      "type": "number",
      "description": "NCBI taxonomy ID"
    },
    "species": {
      "type": "string",
      "description": "Species common name"
    },
    "scientific_name": {
      "type": "string",
      "description": "Scientific species name"
    },
    "rank": {
      "type": "string",
      "description": "Taxonomic rank"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "mygene-info": {
      "url": "https://gateway.pipeworx.io/mygene-info/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026