region

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

Variants in a genomic region (≤25kb recommended).

Parameters

NameTypeRequiredDescription
chromstringyese.g. “1”, “X”, “MT”
startnumberyes
stopnumberyes
datasetstringno

Example call

Arguments

{
  "chrom": "1",
  "start": 55000000,
  "stop": 55025000
}

curl

curl -X POST https://gateway.pipeworx.io/gnomad/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"region","arguments":{"chrom":"1","start":55000000,"stop":55025000}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('region', {
  "chrom": "1",
  "start": 55000000,
  "stop": 55025000
});

More examples

{
  "chrom": "X",
  "start": 123400000,
  "stop": 123420000,
  "dataset": "gnomad_r4"
}

Response shape

FieldTypeDescription
regionobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "region": {
      "type": "object",
      "properties": {
        "variants": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "variant_id": {
                "type": "string",
                "description": "Variant identifier"
              },
              "rsids": {
                "type": [
                  "array",
                  "null"
                ],
                "description": "rsID identifiers"
              },
              "consequence": {
                "type": "string",
                "description": "VEP consequence"
              },
              "exome": {
                "type": "object",
                "properties": {
                  "ac": {
                    "type": "number",
                    "description": "Allele count"
                  },
                  "an": {
                    "type": "number",
                    "description": "Allele number"
                  },
                  "af": {
                    "type": "number",
                    "description": "Allele frequency"
                  }
                }
              },
              "genome": {
                "type": "object",
                "properties": {
                  "ac": {
                    "type": "number",
                    "description": "Allele count"
                  },
                  "an": {
                    "type": "number",
                    "description": "Allele number"
                  },
                  "af": {
                    "type": "number",
                    "description": "Allele frequency"
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026