gene_annotations

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

QuickGO (EBI) — list the Gene Ontology (GO) annotations for a gene/protein, identified by UniProt accession (e.g. “P04637”). Returns GO ids, names, aspect, evidence, and taxon. Keyless.

Parameters

NameTypeRequiredDescription
gene_product_idstringyesA UniProt accession, e.g. “P04637”.
limitnumbernoMax annotations (default 25, max 100).

Example call

Arguments

{
  "gene_product_id": "P04637"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gene_annotations', {
  "gene_product_id": "P04637"
});

More examples

{
  "gene_product_id": "P53_HUMAN",
  "limit": 50
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026