Skip to main content
Glama

OLS MCP Server

by seandavi
13
  • Apple
  • Linux

OLS MCP Server

Large Language Models are notoriously bad at working with ontologies, often hallucinating terms or their identifiers. This server provides a reliable way to access and query ontologies, ensuring accurate and up-to-date information.

Speaking ontologies

This repository contains a Model Context Protocol (MCP) server providing access to the Ontology Lookup Service (OLS) API. This server enables AI assistants to search for and retrieve ontological terms, concepts, and hierarchies from various biological and medical ontologies.

This server is designed to work seamlessly with AI assistants like Claude Desktop, allowing users to query ontologies using natural language. It supports a wide range of ontologies, including Gene Ontology (GO), Human Phenotype Ontology (HP), and many others.

The mcp server in action in Claude Desktop.

Without (top part of image below) and with mcp server engaged (bottom of figure below):

With and without mcp server in claude desktop.

Features

The OLS MCP Server provides the following tools:

  • 🔍 Search Terms: Search for terms across ontologies with flexible filtering
  • 📚 Search Ontologies: Discover available ontologies and their metadata
  • ℹ️ Get Ontology Information: Retrieve detailed information about specific ontologies
  • 🎯 Get Term Information: Get comprehensive details about specific terms
  • 🌳 Get Term Children: Find direct child terms in ontological hierarchies
  • 👨‍👩‍👧‍👦 Get Term Ancestors: Retrieve parent terms and ancestors
  • 🤖 Find Similar Terms: Discover semantically similar terms using LLM embeddings

Supported Ontologies

The server works with any ontology available through the EBI Ontology Lookup Service, including:

  • GO (Gene Ontology)
  • EFO (Experimental Factor Ontology)
  • HP (Human Phenotype Ontology)
  • MONDO (Monarch Disease Ontology)
  • ChEBI (Chemical Entities of Biological Interest)
  • UBERON (Uber-anatomy ontology)
  • And many more...

Installation

Prerequisites

  • Python 3.12 or higher
  • uv package manager

Install uv (if not already installed)

# macOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh # Windows powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

Install the OLS MCP Server

# Clone the repository git clone https://github.com/seandavi/ols-mcp-server.git cd ols-mcp-server # Install dependencies uv sync # Install as a tool (optional) uv tool install .

Configuration

Claude Desktop Configuration

To use this server with Claude Desktop, add the following configuration to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{ "mcpServers": { "ols-mcp-server": { "command": "uv", "args": [ "tool", "run", "ols-mcp-server" ], "env": {} } } }

Alternative Configuration (if installed as tool)

If you installed the server as a uv tool, you can use this simpler configuration:

{ "mcpServers": { "ols-mcp-server": { "command": "ols-mcp-server", "args": [], "env": {} } } }

Usage Examples

Once configured with Claude Desktop, you can use natural language to interact with the OLS API:

Searching for Terms

"Search for terms related to diabetes in the Human Phenotype Ontology"

"Find all terms containing 'apoptosis' in the Gene Ontology"

Getting Ontology Information

"Tell me about the Gene Ontology"

"What ontologies are available for chemical compounds?"

Exploring Term Hierarchies

"Show me the children of the term 'metabolic process' in GO"

"What are the ancestor terms for HP:0000118?"

Finding Similar Terms

"Find terms similar to 'heart development' in the Gene Ontology"

Development Setup

Setting up the Development Environment

  1. Clone the repository:
    git clone <repository-url> cd ols-mcp-server
  2. Install dependencies:
    uv sync --extra dev
  3. Activate the virtual environment:
    source .venv/bin/activate # macOS/Linux # or .venv\Scripts\activate # Windows

Code Quality

# Format code uv run ruff format # Lint code uv run ruff check # Type checking uv run mypy src/

Adding New Features

  1. Add new tools in src/ols_mcp_server/server.py using the @mcp.tool() decorator
  2. Create models in src/ols_mcp_server/models.py for structured responses
  3. Update tests to cover new functionality
  4. Update documentation as needed

API Documentation

The server interacts with the EBI Ontology Lookup Service API v2. Key endpoints:

  • Search: https://www.ebi.ac.uk/ols4/api/search
  • Ontologies: https://www.ebi.ac.uk/ols4/api/v2/ontologies
  • Terms: https://www.ebi.ac.uk/ols4/api/terms
  • Hierarchies: https://www.ebi.ac.uk/ols4/api/v2/ontologies/{ontology}/classes/{term}/children

Troubleshooting

Common Issues

  1. Server not found: Ensure the path to the server is correct in your Claude config
  2. Permission errors: Make sure the server script is executable
  3. Network errors: Check your internet connection and firewall settings
  4. Python version: Ensure you're using Python 3.12 or higher

Contributing

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature-name
  3. Make your changes
  4. Run tests: uv run pytest
  5. Format code: uv run ruff format
  6. Submit a pull request ]

Acknowledgments

Related MCP Servers

  • -
    security
    A
    license
    -
    quality
    Semantic Scholar API, providing comprehensive access to academic paper data, author information, and citation networks.
    Last updated -
    55
    Python
    MIT License
  • -
    security
    A
    license
    -
    quality
    Provides a semantic memory layer that integrates LLMs with OpenSearch, enabling storage and retrieval of memories within the OpenSearch engine.
    Last updated -
    4
    Python
    Apache 2.0
  • A
    security
    A
    license
    A
    quality
    Enables searching for drugs and exploring ontology terms in the Cortellis database, providing access to comprehensive drug development status information with structured JSON responses.
    Last updated -
    7
    123
    1
    JavaScript
    MIT License
    • Linux
    • Apple
  • -
    security
    F
    license
    -
    quality
    Provides tools for accessing the Semantic Scholar API to search papers, retrieve paper and author details, and fetch citations and references through the Model Context Protocol.
    Last updated -
    21
    Python
    • Apple
    • Linux

View all related MCP servers

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/seandavi/ols-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server