gget-mcp
About
An MCP server for the gget bioinformatics library, enabling standardized access to genomics tools and databases.
Details
- Author
- longevity-genie
- Categories
- Developer Tools, Other
Jump to
Setup
Install gget-mcp in your MCP client (Claude Desktop, Cursor, Windsurf, and others).
Repository: https://github.com/longevity-genie/gget-mcp
Follow the installation instructions in the repository README, then restart your MCP client.
MCP (Model Context Protocol) server for theggetbioinformatics library.
This server implements the Model Context Protocol (MCP) for gget, providing a standardized interface for accessing powerful bioinformatics tools and databases. MCP enables AI assistants and agents to perform complex genomics queries through structured interfaces.
The gget bioinformatics toolkit provides efficient querying of genomic databases and includes functions for:
- Gene and sequence information retrieval
- BLAST and sequence alignment
- Protein structure prediction
- Gene expression analysis
- Functional enrichment analysis
- And much more!
π€ User:"Analyze the TP53 gene - find its details and protein sequence, then check for cancer mutations"
π€ AI Assistant:I'll help you analyze TP53 step by step:
[Uses gget_search]β Found TP53 (ENSG00000141510) on chromosome 17
[Uses gget_info]β TP53 is a protein-coding tumor suppressor gene
[Uses gget_seq with translate=True]β Retrieved 393 amino acid protein sequence
[Uses gget_cosmic]β Found hotspot mutations R175H, R248Q, R273H in multiple cancers
π€ User:"Now predict the 3D structure of this protein sequence: MSKGEELFTGVVPILVEL..."
π€ AI Assistant:Let me analyze this sequence:
[Uses gget_blast]β Identified as Green Fluorescent Protein (GFP)
[Uses gget_alphafold]β Predicted classic beta-barrel structure with 90%+ confidence
π€ User:"Perform pathway enrichment for DNA repair genes: TP53, BRCA1, BRCA2, ATM"
π€ AI Assistant:[Uses gget_enrichr]β Top pathways: DNA Damage Response, Homologous Recombination, Cell Cycle Checkpoints, p53 Signaling
See how powerful this is?You can now ask natural language questions about genes, sequences, mutations, and pathways - the AI does the complex bioinformatics work for you!
MCP is a protocol that bridges the gap between AI systems and specialized domain tools. It enables:
- Structured Access: Direct connection to powerful bioinformatics tools and databases
- Natural Language Queries: Simplified interaction with complex genomics workflows
- Type Safety: Strong typing and validation through FastMCP
- AI Integration: Seamless integration with AI assistants and agents
If you want to understand more about what the Model Context Protocol is and how to use it more efficiently, you can take theDeepLearning AI Courseor search for MCP videos on YouTube.
- gget_search: Find Ensembl IDs associated with search terms
- gget_info: Fetch detailed information for Ensembl IDs
- gget_seq: Retrieve nucleotide or amino acid sequences
- gget_ref: Get reference genome information from Ensembl
- gget_blast: BLAST nucleotide or amino acid sequences
- gget_blat: Find genomic locations of sequences
- gget_muscle: Align multiple sequences
- gget_archs4: Get gene expression data from ARCHS4
- gget_enrichr: Perform gene set enrichment analysis
- gget_pdb: Fetch protein structure data from PDB
- gget_alphafold: Predict protein structure using AlphaFold
- gget_cosmic: Search COSMIC database for cancer mutations
- gget_cellxgene: Query single-cell RNA-seq data from CellxGene
# Download and install uv curl -LsSf https://astral.sh/uv/install.sh | sh # Verify installation uv --version uvx --version
uvx is a very nice tool that can run a python package installing it if needed.
You can run the gget-mcp server directly using uvx without cloning the repository:
# Run the server in HTTP mode (default) uvx gget-mcp http
STDIO Mode (for MCP clients that require stdio)
# Run the server in stdio mode uvx gget-mcp stdio
# Run the server in streamable HTTP mode on default (3002) port uvx gget-mcp http # Run on a specific port uvx gget-mcp http --port 8000
# Run the server in SSE mode uvx gget-mcp sse
In cases when there are problems with uvx often they can be caused by cleaning uv cache:
The HTTP mode will start a web server that you can access athttp://localhost:3002/mcp(with documentation athttp://localhost:3002/docs). The STDIO mode is designed for MCP clients that communicate via standard input/output, while SSE mode uses Server-Sent Events for real-time communication.
Note:Currently, we do not have a Swagger/OpenAPI interface, so accessing the server directly in your browser will not show much useful information. To explore the available tools and capabilities, you should either use the MCP Inspector (see below) or connect through an MCP client to see the available tools.
Configuring your AI Client (Anthropic Claude Desktop, Cursor, Windsurf, etc.)
We provide preconfigured JSON files for different use cases. Here are the actual configuration examples:
Use this configuration for most AI clients. Use this mode when you want to save large output files (sequences, structures, alignments) to disk instead of returning them as text. Create or update your MCP configuration file:
{ "mcpServers": { "gget-mcp": { "command": "uvx", "args": ["--from", "gget-mcp@latest", "stdio"] } } }
{ "mcpServers": { "gget-mcp": { "command": "uvx", "args": ["--from", "gget-mcp@latest", "server"] } } }
For a visual guide on how to configure MCP servers with AI clients, check out ourconfiguration tutorial videofor our sister MCP server (biothings-mcp). The configuration principles are exactly the same for the gget MCP server - just use the appropriate JSON configuration files provided above.
If you want to inspect the methods provided by the MCP server, use npx (you may need to install nodejs and npm):
npx @modelcontextprotocol/inspector --config mcp-config.json --server gget-mcp
You can also run the inspector manually and configure it through the interface:
After that you can explore the tools and resources with MCP Inspector at which is usually at 6274 port (note, if you run inspector several times it can change port)
Simply point your AI client (like Cursor, Windsurf, ClaudeDesktop, VS Code with Copilot, orothers) to use the appropriate configuration file from the repository.
Claude Desktop + gget_mcp Step-by-Step Guide (Windows)
This guide will walk you through setting up Claude Desktop with the gget_mcp extension and Google Drive integration on Windows. By the end, you'll be able to use Claude to fetch biological data (like gene sequences) and save them directly to your Google Drive folder with offline access.
- Windows PC with administrator access
- Google account
- Stable internet connection
Step 1: Set Up Google Drive for Desktop with Offline Access
-Download and installGoogle Drive for Desktop
Connect your project's shared Google account (if applicable)
Configure offline access for your working folder:
- Navigate to the folder you want to work with in Google Drive
- Right-click on the folder (e.g., "work" or your project folder)
- Select"Available offline"from the context menu
- This makes the folder accessible at a path likeC:\GDrive\holy-bio-mcp\My Disk\work
Important:This is different from just syncing - offline access ensures the files are locally available while still being part of your Google Drive structure.
- Visithttps://winstall.app/apps/astral-sh.uv
- Follow installation instructions
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
Restart your terminal after installation
You can install Node.js using either method:
- Visithttps://nodejs.org/en/download
- Download the Windows installer (LTS version recommended)
- Run the installer with default settings
Both methods work equally well - choose whichever you prefer.
Step 5: Verify Installation & Cache Packages
Open Command Prompt or PowerShell and run:
- The command should start without errors
- Packages will be downloaded and cached
- If it runs successfully, everything is configured correctly
- You can pressCtrl+Cto stop it
- Open Claude Desktop
- Go toSettings(gear icon)
- Navigate to the"Extensions"tab in the left sidebar
- Enable theFilesystemExtension
- Add your Google Drive offline folder to the allowed directories (e.g.,C:\GDrive\holy-bio-mcp\My Disk\work)
Note:The Filesystem extension is built into Claude Desktop and uses MCP under the hood, but it's managed directly by the application. You don't need to configure it in the JSON file.
- In the same manner, go toSettings, navigate to the"Developer"tab in the left sidebar
- InDevelopersettings tab, click"Edit Config"button
- This will open theclaude_desktop_config.jsonfile
- Edit it and add the gget_mcp server configuration:
{ "mcpServers": { "gget": { "command": "uvx", "args": [ "--from", "gget-mcp@latest", "stdio" ] } } }
- Completely close Claude Desktop (check system tray)
- Restart the application
- Note:On first launch, you might experience a timeout - this is normal
- If needed, restart Claude Desktop a second time
- Open Claude Desktop Settings
- Go to theDevelopertab
- Confirm that both components are enabled:
- β
Filesystem Extension- should show your configured Google Drive path and show "Running" status
- β
gget MCP Server- should show "Running" status
Now let's verify everything works! In Claude Desktop, create a new chat. Click "Search and tools" icon, select and enable both gget_mcp and filesystem
Please search for the COL1A1 gene, retrieve its protein sequence, and save it to C:\GDrive\holy-bio-mcp\My Disk\work\test_sequences\ as a FASTA file.
- Claude will use gget_mcp to search for the gene
- It will fetch the sequence data
- It will save the file to your specified folder
- The file will sync to Google Drive automatically
- Claude will be able to read it using Filesystem Extension.
- Ensureuvandnodeare in your system PATH
- Try running the verification command again from Step 5
- Restart Claude Desktop completely
- Check that the Filesystem Extension has access to your Google Drive folder
- Verify the folder has offline access enabled in Google Drive
- Try running Claude Desktop as administrator
- Ensure the path is correct (use the exact path shown in File Explorer)
- This is normal - simply restart Claude Desktop
- Wait 10-15 seconds before making requests
- Ensure internet connection is stable (gget fetches from online databases)
- Check that the gget_mcp server shows as "Active" in settings
- Try the verification command from Step 5 again
- Confirm the folder shows a green checkmark in Google Drive for Desktop
- If files aren't syncing, right-click the folder and re-enable "Available offline"
- Check that you have enough local disk space for offline files
If everything works correctly, you now have:
- β
Claude Desktop with MCP capabilities
- β
Access to biological databases via gget_mcp
- β
Direct file operations in your Google Drive offline folder
- β
Automatic cloud synchronization of all results
You can now ask Claude to fetch gene sequences, protein data, perform BLAST searches, and save everything directly to your Google Drive folder with offline access!
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





