- Home
- MCP servers
- gnomAD
gnomAD
- typescript
10
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"shukwong-gnomad-mcp-server": {
"command": "node",
"args": [
"/path/to/gnomad-mcp-server/dist/index.js"
]
}
}
}You run an MCP server that exposes gnomAD data through a programmable interface, letting AI assistants query gene constraints, variant frequencies, population data, and other genomic information. This server enables fast, structured access to gnomAD resources so you can build aware, data-driven assistants and workflows without manual data wrangling.
How to use
You interact with the gnomAD MCP Server by connecting your MCP client to the local or remote MCP endpoint and issuing requests that target genes, variants, regions, and populations. Use the available tools to search for genes or variants, retrieve detailed gene information including constraint scores, and fetch population-specific allele frequencies. The server supports region queries, transcript data, structural variants, and mitochondrial variants, allowing you to build rich genetic data queries into your AI workflows.
How to install
Prerequisites: you need Node.js 18 or higher and npm or yarn installed on your system.
Step 1. Clone the project repository.
Step 2. Install dependencies.
Step 3. Build the server.
How to run
Run the server locally using the standard runtime command shown for development and testing.
Additional sections
Configuration is provided to connect the server with clients via local stdio execution. You can also start the server through MCP CLI for convenience.
Available tools
search
Search for genes, variants, or regions in gnomAD with options for reference genome and dataset.
get_gene
Fetch detailed information about a gene, including constraint scores and related metadata.
get_variant
Retrieve detailed information about a specific variant, including population frequencies and annotations.