MyGene.info

live BioGenes

BioThings gene annotation joining NCBI/Ensembl/UniProt/KEGG/OMIM. Keyless.

5 tools
0ms auth
free tier 50 calls/day

Tools

query required: query

Full-text gene query.

Parameters
Name Type Description
query req string
species opt string
fields opt string
size opt number
sort opt string
Try it
gene required: gene_id

Annotations for a gene id.

Parameters
Name Type Description
gene_id req string
fields opt string
species opt string
Try it
query_many required: ids

Batch lookup.

Parameters
Name Type Description
ids req array
scopes opt string
species opt string
fields opt string
Try it
metadata

Release / source metadata.

No parameters required.

Try it
taxonomy required: species

Species taxonomy info.

Parameters
Name Type Description
species req string
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/mygene-info/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/mygene-info/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"query","arguments":{"query": "hello"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("query", {"query":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("biothings gene annotation joining ncbi/ensembl/uniprot/kegg/omim");