search
Pack: gnomad · Endpoint: https://gateway.pipeworx.io/gnomad/mcp
Autocomplete-style search across gnomAD genes and variants by free-text query; returns matching Ensembl gene IDs and symbols. Use to resolve partial gene names or symbols before calling gene or variant.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes |
Example call
Arguments
{
"query": "BRCA1"
}
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":"search","arguments":{"query":"BRCA1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search', {
"query": "BRCA1"
});
More examples
{
"query": "rs1801133"
}
Response shape
| Field | Type | Description |
|---|---|---|
gene_search | array | Gene search results |
Full JSON Schema
{
"type": "object",
"properties": {
"gene_search": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ensembl_id": {
"type": "string",
"description": "Ensembl gene ID"
},
"symbol": {
"type": "string",
"description": "Gene symbol"
}
}
},
"description": "Gene search results"
}
}
}
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.