This project provides a Model Context Protocol (MCP) server for interacting with the Galaxy bioinformatics platform. It enables AI assistants and other clients to connect to Galaxy instances, search and execute tools, manage workflows, and access other features of the Galaxy ecosystem.
This repository contains a Python-based MCP server implementation that provides comprehensive integration with Galaxy's API through BioBlend.
Note: There is also a work-in-progress TypeScript implementation available in a separate branch of this repository.
- Galaxy Connection: Connect to any Galaxy instance with a URL and API key
- Server Information: Retrieve comprehensive server details including version, configuration, and capabilities
- Tools Management: Search, view details, and execute Galaxy tools
- Workflow Integration: Access and import workflows from the Interactive Workflow Composer (IWC)
- History Operations: Manage Galaxy histories and datasets
- File Management: Upload files to Galaxy from local storage
- Comprehensive Testing: Full test suite with mock-based testing for reliability
The fastest way to get started is using uvx
:
# Run the server directly without installation
uvx galaxy-mcp
# Run with MCP developer tools for interactive exploration
uvx --from galaxy-mcp mcp dev galaxy_mcp.server
# Run as a deployed MCP server
uvx --from galaxy-mcp mcp run galaxy_mcp.server
You'll need to set up your Galaxy credentials via environment variables:
export GALAXY_URL=<galaxy_url>
export GALAXY_API_KEY=<galaxy_api_key>
# Install from PyPI
pip install galaxy-mcp
# Or from source
cd mcp-server-galaxy-py
pip install -r requirements.txt
mcp run main.py
See the Python implementation README for specific instructions and documentation.