search_genes

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

Search SGD (Saccharomyces Genome Database, the authoritative budding-yeast / S. cerevisiae genetics resource) for genes, loci, alleles, and other entities by free-text query. Returns matching hits with their name, category, and href. Keyless.

Parameters

NameTypeRequiredDescription
querystringyesFree-text search, e.g. a gene name like ADE2.
limitnumbernoMax results (default 15).

Example call

Arguments

{
  "query": "ADE2"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_genes', {
  "query": "ADE2"
});

More examples

{
  "query": "DNA repair",
  "limit": 10
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026