AlphaGenome
MCP server from Augmented-Nature/AlphaGenome-MCP-Server
claude mcp add --transport stdio augmented-nature-alphagenome-mcp-server docker exec -i alphagenome-mcp-server node /app/build/index.js \ --env ALPHAGENOME_API_KEY="your-api-key-here"
How to use
The AlphaGenome MCP Server exposes a production-grade interface to Google DeepMind's AlphaGenome API, enabling researchers to run advanced genomic analyses through natural language commands and structured tool calls. It supports core predictions (DNA sequence analysis, genomic interval analysis, variant effect prediction, and variant scoring), batch processing for sequences, intervals, and variants, and advanced scoring and analysis workflows. Users can invoke individual tools (e.g., predict_dna_sequence, predict_genomic_interval, predict_variant_effect, score_variant) or batch tools (predict_sequences, predict_intervals, predict_variants, score_variants) as MCP tools, and combine these with auxiliary utilities for validation, parsing, and metadata retrieval. The server is designed for production use with real API integration, robust error handling, and parallel processing where applicable.
How to install
Prerequisites:
- Docker 20.10+ and Docker Compose 2.0+ (for containerized deployment)
- AlphaGenome API key from Google DeepMind
- Network access to pull required images and reach the AlphaGenome API
Installation steps:
- Clone the repository:
git clone https://github.com/Augmented-Nature/AlphaGenome-MCP-Server.git
cd AlphaGenome-MCP-Server
- Obtain and set your AlphaGenome API key:
# Example: store key in an environment file or directly set in a container environment
echo "ALPHAGENOME_API_KEY=your-api-key-here" > .env
- Build/run with Docker Compose (recommended for isolation and reproducibility):
# Ensure environment variables are loaded inside the container environment
docker-compose up -d
- Confirm the MCP server is running and accessible. You should see the Alphagenome MCP server container active and the index.js process running inside it. If needed, inspect logs:
docker-compose logs -f
- Add MCP configuration to your MCP client by referencing the server name and command pattern shown in the example below. The server uses a Docker-based Node.js entry point inside the container; ensure the container name matches alphagenome-mcp-server if you customize deployment.
{
"mcpServers": {
"alphagenome-server": {
"type": "stdio",
"command": "docker",
"args": [
"exec",
"-i",
"alphagenome-mcp-server",
"node",
"/app/build/index.js"
],
"disabled": false,
"autoApprove": [],
"timeout": 30
}
}
}
Additional notes
Tips and common issues:
- Keep your ALPHAGENOME_API_KEY secure; rotate keys as recommended by your organization and do not commit keys to version control.
- Ensure the Docker container alphagenome-mcp-server is running before starting your MCP client; use docker-compose start to initialize services.
- If you encounter API constraint messages (e.g., interval width or batch size limits), adjust max_workers or interval parameters in your tool calls.
- The server supports both single-tool calls and batch processing; for high-throughput workloads, enable parallel processing via max_workers settings in batch tool arguments.
- Monitor logs regularly during initial setup to catch misconfigurations or network/auth failures early.
Related MCP Servers
zen
Selfhosted notes app. Single golang binary, notes stored as markdown within SQLite, full-text search, very low resource usage
MCP -Deepseek_R1
A Model Context Protocol (MCP) server implementation connecting Claude Desktop with DeepSeek's language models (R1/V3)
mcp-fhir
A Model Context Protocol implementation for FHIR
mcp
Inkdrop Model Context Protocol Server
mcp-appium-gestures
This is a Model Context Protocol (MCP) server providing resources and tools for Appium mobile gestures using Actions API..
dubco -npm
The (Unofficial) dubco-mcp-server enables AI assistants to manage Dub.co short links via the Model Context Protocol. It provides three MCP tools: create_link for generating new short URLs, update_link for modifying existing links, and delete_link for removing short links.