snp_associations

Pack: gwas-catalog · Endpoint: https://gateway.pipeworx.io/gwas-catalog/mcp

GWAS Catalog: get trait/disease associations for a SNP (rsID) — risk allele, p-value, odds ratio per copy, beta/effect size, and risk allele frequency. Keyless, from EBI/NHGRI.

Parameters

NameTypeRequiredDescription
rsidstringyesdbSNP rsID, e.g. “rs7329174”.
limitnumbernoMax associations to return (default 20).

Example call

Arguments

{
  "rsid": "rs7329174"
}

curl

curl -X POST https://gateway.pipeworx.io/gwas-catalog/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"snp_associations","arguments":{"rsid":"rs7329174"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('snp_associations', {
  "rsid": "rs7329174"
});

More examples

{
  "rsid": "rs1234567",
  "limit": 50
}

Connect

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

{
  "mcpServers": {
    "gwas-catalog": {
      "url": "https://gateway.pipeworx.io/gwas-catalog/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026