Navigation
Biomart MCP: Seamless Genomic Access & Instant Insights - MCP Implementation

Biomart MCP: Seamless Genomic Access & Instant Insights

Biomart MCP: The ultimate bridge for seamless, powerful data access – empowering researchers to unlock genomic insights faster than ever. Game-changer alert!

Research And Data
4.2(123 reviews)
184 saves
86 comments

Users create an average of 22 projects per month with this tool

About Biomart MCP

What is Biomart MCP: Seamless Genomic Access & Instant Insights?

Biomart MCP is a purpose-built server leveraging the Model Context Protocol (MCP) to bridge large language models with the extensive genomic data resources of Biomart. By integrating the pybiomart package, this tool empowers researchers to query biological databases, translate identifiers, and retrieve structured datasets directly within AI-driven workflows. Designed for compatibility across platforms like Claude Desktop and Cursor, it simplifies access to Ensembl, UniProt, and other critical genomic repositories without manual API configuration.

How to Use Biomart MCP: Seamless Genomic Access & Instant Insights?

  1. Clone the repository and install dependencies via uv's virtual environment setup
  2. Select your interface:
    • For Claude Desktop: Deploy using mcp install command
    • For Cursor: Register the server through agent mode configuration
    • For Glama: Import pre-configured server settings via the dedicated integration link
  3. Execute queries using standardized MCP tool calls to explore datasets, translate identifiers, or extract genomic features

Biomart MCP Features

Key Features of Biomart MCP: Seamless Genomic Access & Instant Insights?

Smart Database Navigation

Automatically discover available marts, datasets, and attributes while optimizing token usage through CSV-formatted returns

Real-Time Translation

Instantly convert gene IDs between Ensembl, UniProt, and RefSeq formats within model queries

Platform Agnosticism

Seamless integration with major AI research platforms while maintaining strict data governance through token limits and rate controls

Use Cases of Biomart MCP: Seamless Genomic Access & Instant Insights?

  • Variant Analysis: Cross-reference SNPs against ClinVar datasets during disease pathway exploration
  • Drug Target Research: Query protein sequence data from UniProt to validate computational models
  • Educational Workflows: Create interactive tutorials that pull real-time genomic data into teaching modules
  • Phylogenetic Studies: Compare gene orthologs across species using Ensembl compara datasets

Biomart MCP FAQ

FAQ from Biomart MCP: Seamless Genomic Access & Instant Insights?

Does this support non-MCP models?

Yes - while MCP provides optimized integration, raw API endpoints remain accessible for custom implementations

Are there data volume restrictions?

Yes - token limits protect against excessive queries, but bulk downloads can be requested through official Biomart channels

Can I customize query templates?

Absolutely - the open-source framework allows developers to create domain-specific tool presets for specialized workflows

Content

Biomart MCP

A MCP server to interface with Biomart

Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to LLMs developed by Anthropic. Here we use the MCP python-sdk to create a MCP server that interfaces with Biomart via the pybiomart package.

Demo showing biomart-mcp in action

There is a short demo video showing the MCP server in action on Claude Desktop.

Installation

Clone the repository

git clone https://github.com/jzinno/biomart-mcp.git
cd biomart-mcp

Claude Desktop

uv run --with mcp[cli] mcp install --with pybiomart biomart-mcp.py

Cursor

Via Cusror's agent mode, other models can take advantage of MCP servers as well, such as those form OpenAI or DeepSeek. Click the cursor setting cogwheel and naviagate to Features -> MCP Servers -> Add new MCP Server. Set the name to biomart (or whatever you like) and Type to command.

Set the command to:

uv run --with mcp[cli] --with pybiomart mcp run /your/path/to/biomart-mcp.py

Glama

Biomart MCP server

Development

# Create a virtual environment
uv venv

# MacOS/Linux
source .venv/bin/activate

# Windows
.venv\Scripts\activate

uv sync #or uv add mcp[cli] pybiomart

# Run the server in dev mode
mcp dev biomart-mcp.py

Features

Biomart-MCP provides several tools to interact with Biomart databases:

  • Mart and Dataset Discovery : List available marts and datasets to explore the Biomart database structure
  • Attribute and Filter Exploration : View common or all available attributes and filters for specific datasets
  • Data Retrieval : Query Biomart with specific attributes and filters to get biological data
  • ID Translation : Convert between different biological identifiers (e.g., gene symbols to Ensembl IDs)

Contributing

Pull requests are welcome! Some small notes on development:

  • We are only using @mcp.tool() here by design, this is to maximize compatibility with clients that support MCP as seen in the docs.
  • We are using @lru_cache to cache results of functions that are computationally expensive or make external API calls.
  • We need to be mindful to not blow up the context window of the model, for example you'll see df.to_csv(index=False).replace("\r", "") in many places. This csv style return is much more token efficient than something like df.to_string() where the majority of the tokens are whitespace. Also be mindful of the fact that pulling all genes from a chromosome or similar large request will also be too large for the context window.

Potential Future Features

There of course many more features that could be added, some maybe beyond the scope of the name biomart-mcp. Here are some ideas:

  • Add webscraping for resource sites with bs4, for example we got the Ensembl gene ID for NOTCH1 then maybe in some cases it would be usful to grap the collated Comments and Description Text from UniProtKB section from it's page on UCSC
  • $...$

Related MCP Servers & Clients